Commit bc0d9619 authored by Ilya Simonov's avatar Ilya Simonov

fix generate_thumbnail

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