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
d8efaf35
Commit
d8efaf35
authored
Mar 14, 2023
by
Ilya Simonov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix upload files in folder
parent
65394771
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
4 deletions
+5
-4
signals.cpython-39.pyc
apps/core/__pycache__/signals.cpython-39.pyc
+0
-0
utils.cpython-39.pyc
apps/core/__pycache__/utils.cpython-39.pyc
+0
-0
signals.py
apps/core/signals.py
+2
-2
tasks.py
apps/core/tasks.py
+2
-1
utils.py
apps/core/utils.py
+1
-1
No files found.
apps/core/__pycache__/signals.cpython-39.pyc
View file @
d8efaf35
No preview for this file type
apps/core/__pycache__/utils.cpython-39.pyc
View file @
d8efaf35
No preview for this file type
apps/core/signals.py
View file @
d8efaf35
...
...
@@ -12,10 +12,10 @@ def generate_default_thumbnail_for_video(sender, instance, **kwargs):
if
not
instance
.
thumbnail
and
instance
.
local_file
:
if
os
.
path
.
isfile
(
instance
.
local_file
.
path
):
thumbnail_name
=
utils
.
generate_thumbnail
(
instance
.
local_file
)
thumbnail_path
=
f
'{settings.MEDIA_ROOT}videos/{instance.id}/{thumbnail_name}'
key
=
f
'videos/{thumbnail_name}'
thumbnail_path
=
f
'{settings.MEDIA_ROOT}{key}'
content
=
utils
.
get_thumbnail_content
(
thumbnail_path
)
key
=
f
'videos/{instance.id}/{thumbnail_name}'
content_type
=
'image/jpeg'
instance
.
thumbnail
=
s3_uploader
.
upload_file
(
content
,
key
,
content_type
)
...
...
apps/core/tasks.py
View file @
d8efaf35
...
...
@@ -2,6 +2,7 @@ import os
from
.models
import
Video
,
READY
from
.s3_uploader
import
upload_file
from
.utils
import
asset_upload
from
cp_video.celery
import
app
...
...
@@ -12,7 +13,7 @@ def send_video_to_s3():
for
local_video
in
local_videos
:
video_name
=
local_video
.
local_file
.
name
.
split
(
'/'
)[
-
1
]
key
=
f
'videos/{local_video.id}/{video_name}'
key
=
asset_upload
(
local_video
,
video_name
)
content
=
local_video
.
local_file
.
read
()
local_video
.
s3_file
=
upload_file
(
content
,
key
,
'video/mp4'
)
...
...
apps/core/utils.py
View file @
d8efaf35
...
...
@@ -7,7 +7,7 @@ from moviepy.editor import VideoFileClip
def
asset_upload
(
instance
,
filename
):
return
f
'videos/{
instance.id}/{
filename}'
return
f
'videos/{filename}'
def
generate_thumbnail
(
video
):
...
...
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