Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
C
cp_video_dokku
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Alexandr Dzehil
cp_video_dokku
Commits
76248acd
Commit
76248acd
authored
Mar 30, 2023
by
Ilya Simonov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix upload to s3
parent
97e4b442
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
29 additions
and
5 deletions
+29
-5
utils.cpython-39.pyc
apps/core/__pycache__/utils.cpython-39.pyc
+0
-0
tasks.py
apps/core/tasks.py
+6
-5
utils.py
apps/core/utils.py
+23
-0
No files found.
apps/core/__pycache__/utils.cpython-39.pyc
View file @
76248acd
No preview for this file type
apps/core/tasks.py
View file @
76248acd
...
...
@@ -5,7 +5,7 @@ from django.conf import settings
from
.models
import
Video
,
READY
,
FAIL
from
.s3_uploader
import
upload_file
from
.utils
import
add_video_to_playlist
,
generate_thumbnail
from
.utils
import
add_video_to_playlist
,
generate_thumbnail
,
download_file
from
cp_video.celery
import
app
from
cp_video.utils
import
asset_upload
...
...
@@ -27,10 +27,11 @@ def send_video_to_s3(video_id=None):
file_path
=
settings
.
DOMAIN_NAME
+
settings
.
MEDIA_URL
+
key
log
.
info
(
f
'File path: {file_path}'
)
response
=
requests
.
get
(
file_path
)
log
.
info
(
f
'response status code {response.status_code}'
)
content
=
response
.
content
log
.
info
(
'get content'
)
# response = requests.get(file_path)
# log.info(f'response status code {response.status_code}')
# content = response.content
content
=
download_file
(
file_path
)
log
.
info
(
'get content successfully!'
)
try
:
log
.
info
(
'Generating thumbnail...'
)
...
...
apps/core/utils.py
View file @
76248acd
import
requests
import
logging
from
django.conf
import
settings
from
django.contrib.contenttypes.models
import
ContentType
...
...
@@ -6,6 +9,26 @@ from moviepy.editor import VideoFileClip
from
.models
import
Video
,
Playlist
,
TagToObject
,
DYNAMIC
,
PlaylistVideo
log
=
logging
.
getLogger
(
'send_video_to_s3'
)
def
download_file
(
url
):
log
.
info
(
f
'Downloading file {url}...'
)
local_filename
=
url
.
split
(
'/'
)[
-
1
]
# NOTE the stream=True parameter below
with
requests
.
get
(
url
,
stream
=
True
)
as
r
:
r
.
raise_for_status
()
with
open
(
local_filename
,
'wb'
)
as
f
:
for
chunk
in
r
.
iter_content
(
chunk_size
=
8192
):
log
.
info
(
'chunk'
)
# If you have chunk encoded response uncomment if
# and set chunk_size parameter to None.
#if chunk:
f
.
write
(
chunk
)
return
local_filename
def
generate_thumbnail
(
video_path
,
video_name
):
clip
=
VideoFileClip
(
video_path
)
thumbnail_name
=
video_name
.
split
(
'.'
)[
0
]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment