mirror of
https://github.com/artegoser/image-pluser-webui.git
synced 2024-11-22 11:56:21 +03:00
12 lines
364 B
Python
12 lines
364 B
Python
import gradio as gr
|
|
|
|
with gr.Blocks() as app:
|
|
gr.Markdown(
|
|
"Convert video to images. # **WIP, not working**")
|
|
with gr.Row():
|
|
with gr.Column():
|
|
video = gr.Video(label="Video")
|
|
|
|
format = gr.Radio(
|
|
choices=["png", "jpg"], value="png", label="Format of image")
|
|
submit = gr.Button("Submit")
|