Commit b42c4524 authored by Ilya Simonov's avatar Ilya Simonov

add log for upload local video

parent e91c9fbb
......@@ -28,6 +28,7 @@ def download_file(url):
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