Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -22,4 +22,4 @@ def transcode_video(video_file, output_file, output_format, output_fps):
|
|
22 |
# Return the path to the transcoded file.
|
23 |
return output_file
|
24 |
|
25 |
-
gr.Interface(transcode_video, inputs={"video_file": File("Select a video file"
|
|
|
22 |
# Return the path to the transcoded file.
|
23 |
return output_file
|
24 |
|
25 |
+
gr.Interface(transcode_video, inputs={"video_file": File("Select a video file"), "output_file": File("Output file", accept=".m3u8", mode="upload")}).launch()
|