Commit
·
1888874
1
Parent(s):
bb4377d
fix case when user inputs srt file.
Browse files
main.py
CHANGED
@@ -76,7 +76,7 @@ async def process_video_api(video_file: UploadFile = File(media_type="video"),
|
|
76 |
finally:
|
77 |
srt_file.file.close()
|
78 |
logging.info("Processing the video...")
|
79 |
-
output_path,
|
80 |
logging.info("Zipping response...")
|
81 |
with open(os.path.join(temp_dir, f"{video_file.filename.split('.')[0]}.zip"), 'w+b') as temp_zip_file:
|
82 |
zip_file = zip_response(temp_zip_file.name, [output_path, srt_path])
|
|
|
76 |
finally:
|
77 |
srt_file.file.close()
|
78 |
logging.info("Processing the video...")
|
79 |
+
output_path, srt_path = process_video(temp_file.name, temp_srt_file.name, task, max_words_per_line, fontsize, font, bg_color, text_color, caption_mode)
|
80 |
logging.info("Zipping response...")
|
81 |
with open(os.path.join(temp_dir, f"{video_file.filename.split('.')[0]}.zip"), 'w+b') as temp_zip_file:
|
82 |
zip_file = zip_response(temp_zip_file.name, [output_path, srt_path])
|