Spaces:
Sleeping
Sleeping
File size: 630 Bytes
dfd8d42 e6d30dd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
"""Entry to launch gradio app."""
import gradio as gr
from src.demo.gradio_utils import *
with gr.Blocks(css="style.css") as demo:
gr.Markdown("# π΅ AudioMorphix Gradio Demo π΅\n<p>Select a task and edit audio interactively.</p>")
with gr.Tabs():
with gr.TabItem("Mix Audio"):
create_add_demo()
with gr.TabItem("Remove Audio"):
create_remove_demo()
with gr.TabItem("Move & Resize Audio"):
create_move_demo()
demo.queue(max_size=20)
demo.launch(
debug=True,
# server_name="0.0.0.0",
# server_port=7200,
) # comment the url if using space |