PierreBrunelle
commited on
Commit
β’
79e56cd
1
Parent(s):
2328ff1
Update app.py
Browse files
app.py
CHANGED
@@ -325,6 +325,16 @@ def create_interface():
|
|
325 |
|
326 |
process_btn = gr.Button("π¬ Process Video", variant="primary")
|
327 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
328 |
# Results column
|
329 |
with gr.Column():
|
330 |
|
|
|
325 |
|
326 |
process_btn = gr.Button("π¬ Process Video", variant="primary")
|
327 |
|
328 |
+
gr.Markdown("""
|
329 |
+
<h4>Click one of the examples below to get started:</h4>
|
330 |
+
"""
|
331 |
+
)
|
332 |
+
|
333 |
+
gr.Examples(
|
334 |
+
examples=[["example1.mp4"], ["example2.mp4"]],
|
335 |
+
inputs=[video_input]
|
336 |
+
)
|
337 |
+
|
338 |
# Results column
|
339 |
with gr.Column():
|
340 |
|