Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -111,7 +111,8 @@ def convert_video(video_file, quality, aspect_ratio, video_url):
|
|
111 |
with open(path, 'r') as file:
|
112 |
text_contents.append(file.read())
|
113 |
|
114 |
-
return html_links, video_paths, text_contents
|
|
|
115 |
|
116 |
video_file = gr.inputs.File(label="Video File")
|
117 |
quality = gr.inputs.Dropdown(
|
|
|
111 |
with open(path, 'r') as file:
|
112 |
text_contents.append(file.read())
|
113 |
|
114 |
+
return html_links or "", video_paths or [""], text_contents or [""]
|
115 |
+
|
116 |
|
117 |
video_file = gr.inputs.File(label="Video File")
|
118 |
quality = gr.inputs.Dropdown(
|