Saqib
commited on
Commit
•
e95feae
1
Parent(s):
2f622a9
Update modules/app.py
Browse files- modules/app.py +1 -1
modules/app.py
CHANGED
@@ -104,7 +104,7 @@ async def concatenate_videos(input_data: VideosInput):
|
|
104 |
|
105 |
# Download videos to temporary files
|
106 |
for video_url in input_data.video_urls:
|
107 |
-
temp_video_paths.append(await download_file(video_url, ".mp4"))
|
108 |
|
109 |
# Generate a unique filename
|
110 |
output_filename = f"{uuid.uuid4()}.mp4"
|
|
|
104 |
|
105 |
# Download videos to temporary files
|
106 |
for video_url in input_data.video_urls:
|
107 |
+
temp_video_paths.append(await download_file(str(video_url), ".mp4"))
|
108 |
|
109 |
# Generate a unique filename
|
110 |
output_filename = f"{uuid.uuid4()}.mp4"
|