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
bbdff5dd
Commit
bbdff5dd
authored
Apr 06, 2023
by
Ilya Simonov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix upload video file to s3
parent
bc0d9619
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
10 deletions
+10
-10
utils.cpython-39.pyc
apps/core/__pycache__/utils.cpython-39.pyc
+0
-0
tasks.py
apps/core/tasks.py
+6
-7
utils.py
apps/core/utils.py
+4
-3
No files found.
apps/core/__pycache__/utils.cpython-39.pyc
View file @
bbdff5dd
No preview for this file type
apps/core/tasks.py
View file @
bbdff5dd
...
...
@@ -27,8 +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}'
)
content
=
download_file
(
file_path
)
log
.
info
(
'get content successfully!'
)
video_file
=
download_file
(
file_path
)
local_video
.
local_file
=
None
local_video
.
status
=
READY
local_video
.
s3_file
=
upload_file
(
video_file
,
key
,
'video/mp4'
)
try
:
log
.
info
(
'Generating thumbnail...'
)
...
...
@@ -40,16 +43,12 @@ def send_video_to_s3(video_id=None):
log
.
error
(
e
)
log
.
info
(
'Thumbnail generation failed!'
)
local_video
.
s3_file
=
upload_file
(
content
,
key
,
'video/mp4'
)
local_video
.
status
=
READY
local_video
.
local_file
=
None
local_video
.
save
()
log
.
info
(
f
'Video id {local_video.id} uploaded to S3...'
)
add_video_to_playlist
(
local_video
)
os
.
remove
(
content
)
os
.
remove
(
video_file
.
name
)
except
Exception
as
e
:
log
.
error
(
e
)
...
...
apps/core/utils.py
View file @
bbdff5dd
import
requests
import
logging
from
django.conf
import
settings
from
django.contrib.contenttypes.models
import
ContentType
from
moviepy.editor
import
VideoFileClip
...
...
@@ -22,13 +21,15 @@ def download_file(url):
for
chunk
in
r
.
iter_content
(
chunk_size
=
8192
):
f
.
write
(
chunk
)
return
local_filename
log
.
info
(
'get content successfully!'
)
file
=
open
(
local_filename
,
'rb'
)
return
file
def
handle_uploaded_file
(
f
,
file_name
):
with
open
(
file_name
,
'wb+'
)
as
destination
:
for
chunk
in
f
.
chunks
(
chunk_size
=
4097152
):
print
(
'chunk'
)
destination
.
write
(
chunk
)
...
...
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