dawood's picture
dawood HF Staff
Update app.py
08086df
raw
history blame
277 Bytes
import gradio as gr
from gradio_videogallery import videogallery
example = videogallery().example_inputs()
with gr.Blocks() as demo:
with gr.Row():
videogallery(value=example, label="Populated", style={"height": "600px"}), # populated component
demo.launch()