Commit bbdff5dd authored by Ilya Simonov's avatar Ilya Simonov

fix upload video file to s3

parent bc0d9619
......@@ -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)
......
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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment