Saqib commited on
Commit
38db37d
1 Parent(s): 49f4a8c

Update modules/app.py

Browse files
Files changed (1) hide show
  1. 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 for the output
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 for the output
110
  output_filename = f"{uuid.uuid4()}.mp4"