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
d4d437ab
Commit
d4d437ab
authored
Mar 30, 2023
by
Ilya Simonov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix upload file
parent
76248acd
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
9 deletions
+3
-9
utils.cpython-39.pyc
apps/core/__pycache__/utils.cpython-39.pyc
+0
-0
tasks.py
apps/core/tasks.py
+2
-4
utils.py
apps/core/utils.py
+1
-5
No files found.
apps/core/__pycache__/utils.cpython-39.pyc
View file @
d4d437ab
No preview for this file type
apps/core/tasks.py
View file @
d4d437ab
import
request
s
import
o
s
import
logging
from
django.conf
import
settings
...
...
@@ -27,9 +27,6 @@ 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
content
=
download_file
(
file_path
)
log
.
info
(
'get content successfully!'
)
...
...
@@ -50,6 +47,7 @@ def send_video_to_s3(video_id=None):
log
.
info
(
f
'Video id {local_video.id} uploaded to S3...'
)
add_video_to_playlist
(
local_video
)
os
.
remove
(
content
)
except
Exception
as
e
:
log
.
error
(
e
)
...
...
apps/core/utils.py
View file @
d4d437ab
...
...
@@ -20,10 +20,6 @@ def download_file(url):
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
...
...
@@ -32,7 +28,7 @@ def download_file(url):
def
generate_thumbnail
(
video_path
,
video_name
):
clip
=
VideoFileClip
(
video_path
)
thumbnail_name
=
video_name
.
split
(
'.'
)[
0
]
thumbnail_name
=
f
'{settings.MEDIA_ROOT}{thumbnail_name}.jpg'
thumbnail_name
=
f
'{settings.
DOMAIN_NAME}{settings.
MEDIA_ROOT}{thumbnail_name}.jpg'
clip
.
save_frame
(
thumbnail_name
,
t
=
1.00
)
thumbnail_name
=
thumbnail_name
.
split
(
'/'
)[
-
1
]
...
...
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