v8hid's picture
remove share
f32b704
raw
history blame contribute delete
271 Bytes
import gradio as gr
from zoom import zoom_app
app = gr.Blocks()
with app:
gr.HTML(
"""
<p style='text-align: center'>
Text to Video - Infinite zoom effect
</p>
"""
)
zoom_app()
app.launch(debug=True, enable_queue=True)