积极的屁孩 commited on
Commit
aef94b3
·
1 Parent(s): c5442ce
Files changed (1) hide show
  1. app.py +5 -19
app.py CHANGED
@@ -637,30 +637,16 @@ with gr.Blocks(title="Vevo DEMO") as demo:
637
  gr.HTML("""
638
  <div style="display: flex; justify-content: center; gap: 8px; margin: 20px 0;">
639
  <a href="https://arxiv.org/abs/2502.07243" target="_blank" style="text-decoration: none;">
640
- <div style="display: inline-flex; align-items: center; border-radius: 4px; overflow: hidden;">
641
- <span style="background-color: #4a4a4a; color: white; padding: 5px 8px; font-size: 14px;">arXiv</span>
642
- <span style="background-color: #c44e52; color: white; padding: 5px 8px; font-size: 14px;">Paper</span>
643
- </div>
644
  </a>
645
  <a href="https://openreview.net/pdf?id=anQDiQZhDP" target="_blank" style="text-decoration: none;">
646
- <div style="display: inline-flex; align-items: center; border-radius: 4px; overflow: hidden;">
647
- <span style="background-color: #4a4a4a; color: white; padding: 5px 8px; font-size: 14px;">ICLR</span>
648
- <span style="background-color: #55a868; color: white; padding: 5px 8px; font-size: 14px;">Paper</span>
649
- </div>
650
  </a>
651
  <a href="https://huggingface.co/amphion/Vevo" target="_blank" style="text-decoration: none;">
652
- <div style="display: inline-flex; align-items: center; border-radius: 4px; overflow: hidden;">
653
- <span style="background-color: #4a4a4a; color: white; padding: 5px 8px; font-size: 14px;">
654
- <span style="font-size: 14px;">🤗</span> HuggingFace
655
- </span>
656
- <span style="background-color: #eeca3b; color: white; padding: 5px 8px; font-size: 14px;">Model</span>
657
- </div>
658
  </a>
659
  <a href="https://github.com/open-mmlab/Amphion/tree/main/models/vc/vevo" target="_blank" style="text-decoration: none;">
660
- <div style="display: inline-flex; align-items: center; border-radius: 4px; overflow: hidden;">
661
- <span style="background-color: #4a4a4a; color: white; padding: 5px 8px; font-size: 14px;">GitHub</span>
662
- <span style="background-color: #4c72b0; color: white; padding: 5px 8px; font-size: 14px;">Repo</span>
663
- </div>
664
  </a>
665
  </div>
666
  """)
@@ -705,7 +691,7 @@ with gr.Blocks(title="Vevo DEMO") as demo:
705
  gr.Markdown("### Vevo-TTS: Text-to-speech with separate style and timbre references")
706
  with gr.Row():
707
  with gr.Column():
708
- tts_text = gr.Textbox(label="Input Text", placeholder="Enter text to synthesize...", lines=3)
709
  tts_src_language = gr.Dropdown(["en", "zh", "de", "fr", "ja", "ko"], label="Text Language", value="en")
710
  tts_reference = gr.Audio(label="Style Reference", type="numpy")
711
  tts_style_ref_text = gr.Textbox(label="Style Reference Text", placeholder="Enter style reference text...", lines=3)
 
637
  gr.HTML("""
638
  <div style="display: flex; justify-content: center; gap: 8px; margin: 20px 0;">
639
  <a href="https://arxiv.org/abs/2502.07243" target="_blank" style="text-decoration: none;">
640
+ <img alt="arXiv Paper" src="https://img.shields.io/badge/arXiv-Paper-red">
 
 
 
641
  </a>
642
  <a href="https://openreview.net/pdf?id=anQDiQZhDP" target="_blank" style="text-decoration: none;">
643
+ <img alt="ICLR Paper" src="https://img.shields.io/badge/ICLR-Paper-green">
 
 
 
644
  </a>
645
  <a href="https://huggingface.co/amphion/Vevo" target="_blank" style="text-decoration: none;">
646
+ <img alt="HuggingFace Model" src="https://img.shields.io/badge/%F0%9F%A4%97%20HuggingFace-Model-yellow">
 
 
 
 
 
647
  </a>
648
  <a href="https://github.com/open-mmlab/Amphion/tree/main/models/vc/vevo" target="_blank" style="text-decoration: none;">
649
+ <img alt="GitHub Repo" src="https://img.shields.io/badge/GitHub-Repo-blue">
 
 
 
650
  </a>
651
  </div>
652
  """)
 
691
  gr.Markdown("### Vevo-TTS: Text-to-speech with separate style and timbre references")
692
  with gr.Row():
693
  with gr.Column():
694
+ tts_text = gr.Textbox(label="Target Text", placeholder="Enter text to synthesize...", lines=3)
695
  tts_src_language = gr.Dropdown(["en", "zh", "de", "fr", "ja", "ko"], label="Text Language", value="en")
696
  tts_reference = gr.Audio(label="Style Reference", type="numpy")
697
  tts_style_ref_text = gr.Textbox(label="Style Reference Text", placeholder="Enter style reference text...", lines=3)