Spaces:
Sleeping
Sleeping
File size: 430 Bytes
66ada71 b3e631b 66ada71 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
#!/usr/bin/env python
import gradio as gr
with gr.Blocks() as demo:
with gr.Row():
gr.Video('data/dog0.mp4')
gr.Video('data/dog1.mp4')
with gr.Row():
gr.Video('data/dog0.mp4', height=400)
gr.Video('data/dog1.mp4', height=400)
with gr.Row():
gr.Video('data/dog0.mp4', width=100, min_width=100)
gr.Video('data/dog1.mp4', width=100, min_width=100)
demo.queue().launch()
|