Update app.py
Browse files
app.py
CHANGED
|
@@ -231,6 +231,10 @@ with gr.Blocks(css=css) as demo :
|
|
| 231 |
system_instruction = gr.Markdown(
|
| 232 |
value = standard_sys
|
| 233 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
| 234 |
with gr.Column():
|
| 235 |
video_cut = gr.Video(label="Video cut to 10 seconds", interactive=False)
|
| 236 |
submit_btn = gr.Button("Submit")
|
|
|
|
| 231 |
system_instruction = gr.Markdown(
|
| 232 |
value = standard_sys
|
| 233 |
)
|
| 234 |
+
gr.Examples(
|
| 235 |
+
examples = ["examples/train.mp4"],
|
| 236 |
+
inputs = [video_in]
|
| 237 |
+
)
|
| 238 |
with gr.Column():
|
| 239 |
video_cut = gr.Video(label="Video cut to 10 seconds", interactive=False)
|
| 240 |
submit_btn = gr.Button("Submit")
|