AndreySokolov01 commited on
Commit
f0ab618
·
verified ·
1 Parent(s): 425280d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -24,10 +24,9 @@ iface = gr.Interface(
24
  gr.File(label="Upload Video"),
25
  gr.Slider(minimum=2, maximum=10, value=2, label="Number of Parts")
26
  ],
27
- outputs=gr.File(label="Download Split Videos", type="file", multiple=True),
28
  title="Video Splitter",
29
  description="Upload your video and select how many parts you want to split it into."
30
  )
31
-
32
  if __name__ == "__main__":
33
  iface.launch()
 
24
  gr.File(label="Upload Video"),
25
  gr.Slider(minimum=2, maximum=10, value=2, label="Number of Parts")
26
  ],
27
+ outputs=gr.Files(label="Download Split Videos"),
28
  title="Video Splitter",
29
  description="Upload your video and select how many parts you want to split it into."
30
  )
 
31
  if __name__ == "__main__":
32
  iface.launch()