Commit e91c9fbb authored by Ilya Simonov's avatar Ilya Simonov

add logs for generate thumbnail

parent 2454651d
......@@ -36,9 +36,12 @@ def generate_thumbnail(video_path, video_name):
log.info('get clip successfully!')
thumbnail_name = video_name.split('.')[0]
thumbnail_name = f'{settings.MEDIA_ROOT}{thumbnail_name}.jpg'
log.info(f'thumbnail name: {thumbnail_name}')
clip.save_frame(thumbnail_name, t=1.00)
log.info('create frame successfully!')
thumbnail = open(thumbnail_name, 'rb')
log.info('open thumbnail successfully!')
thumbnail_name = thumbnail_name.split('/')[-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