Update app.py
Browse files
app.py
CHANGED
|
@@ -5,5 +5,5 @@ def test(vid):
|
|
| 5 |
return vid
|
| 6 |
|
| 7 |
|
| 8 |
-
iface = gr.Interface(fn=test,
|
| 9 |
iface.launch(share=True)
|
|
|
|
| 5 |
return vid
|
| 6 |
|
| 7 |
|
| 8 |
+
iface = gr.Interface(fn=test, inputs="video", outputs="video", examples=[os.path.join(os.path.dirname(__file__), 'sample.mp4')])
|
| 9 |
iface.launch(share=True)
|