image-pluser-webui/tabs/Images to video/app.py

18 lines
511 B
Python
Raw Normal View History

2023-04-16 08:51:33 +03:00
import gradio as gr
from processing.bulk import images_to_video
with gr.Blocks() as app:
gr.Markdown("Convert images to video. # **WIP, not working**")
with gr.Row():
with gr.Column():
directory = gr.Text(
placeholder="A directory with many images of the same size", lines=1, label="Directory")
fps = gr.Number(label="FPS")
submit = gr.Button("Submit")
submit.click(
fn=images_to_video,
inputs=[directory, fps],
)