Commit 4475bd49 authored by Ilya Simonov's avatar Ilya Simonov

revert f2cc9f7a

parent ca353f1a
......@@ -4,7 +4,6 @@ import logging
from django.contrib.contenttypes.models import ContentType
from moviepy.editor import VideoFileClip
from wsgiref.util import FileWrapper
from .models import Video, Playlist, TagToObject, DYNAMIC, PlaylistVideo
......@@ -25,13 +24,10 @@ def download_file(url):
return local_filename
def handle_uploaded_file(file, filename):
def handle_uploaded_file(f, file_name):
chunk_count = 0
wrapper = FileWrapper(file, blksize=100)
with open(filename, 'wb+') as destination:
# for chunk in file.chunks():
for chunk in wrapper:
with open(file_name, 'wb+') as destination:
for chunk in f.chunks():
destination.write(chunk)
chunk_count += 1
......
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