Spaces:
Build error
Build error
File size: 283 Bytes
74998aa |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
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(share=True, debug=True, enable_queue=True)
|