test_video / app.py
zhiweili
add app_i2v
708a6ea
raw
history blame contribute delete
334 Bytes
import gradio as gr
from app_t2v import create_demo as create_demo_t2v
from app_i2v import create_demo as create_demo_i2v
with gr.Blocks(css="style.css") as demo:
with gr.Tabs():
with gr.Tab(label="tx2vid"):
create_demo_t2v()
with gr.Tab(label="img2vid"):
create_demo_i2v()
demo.launch()