Saqib
commited on
Commit
•
13eb97b
1
Parent(s):
fadcf7b
Update modules/app.py
Browse files- modules/app.py +1 -1
modules/app.py
CHANGED
@@ -98,7 +98,7 @@ async def concatenate_videos(input_data: VideosInput):
|
|
98 |
|
99 |
# Download videos to temporary files
|
100 |
for video_url in input_data.video_urls:
|
101 |
-
temp_video_paths.append(download_file(str(video_url), ".mp4"))
|
102 |
|
103 |
# Generate a unique filename
|
104 |
output_filename = f"{uuid.uuid4()}.mp4"
|
|
|
98 |
|
99 |
# Download videos to temporary files
|
100 |
for video_url in input_data.video_urls:
|
101 |
+
temp_video_paths.append(await download_file(str(video_url), ".mp4"))
|
102 |
|
103 |
# Generate a unique filename
|
104 |
output_filename = f"{uuid.uuid4()}.mp4"
|