File size: 262 Bytes
e3dad58
 
 
 
 
 
 
 
 
991e4f2
e3dad58
 
1
2
3
4
5
6
7
8
9
10
11
12
13

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", height=750),  # populated component

demo.launch()