File size: 565 Bytes
93c90ef 8193575 93c90ef |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
import gradio as gr
with gr.Blocks(title="STAR Online Inference", theme=gr.themes.Soft()) as demo:
gr.Markdown("# STAR: Speech-to-Audio Generation via Representation Learning")
gr.Markdown("""
<div style="text-align: left; padding: 10px;">
## 🗣️ Input
A brief input speech utterance for the overall audio scene.
> Example:A cat meowing and young female speaking
#### 🎙️ Input Speech Example
#### 🎧️ Output Audio Example
</div>
---
</div>
""")
if __name__ == "__main__":
demo.launch()
|