mirror of
https://github.com/artegoser/image-pluser-webui.git
synced 2025-02-23 04:33:14 +03:00
feat: tabs system
This commit is contained in:
parent
5b33b2cd66
commit
ca3d0969bc
6 changed files with 92 additions and 47 deletions
12
tabs/Video to images/app.py
Normal file
12
tabs/Video to images/app.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
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")
|
Loading…
Add table
Reference in a new issue