Spaces:
Runtime error
Runtime error
Upload app.py
Browse files
app.py
CHANGED
@@ -479,7 +479,7 @@ with gr.Blocks() as lf_tts:
|
|
479 |
audio_stream = gr.Audio(label='Output Audio Stream', interactive=False, streaming=True, autoplay=True)
|
480 |
with gr.Accordion('Audio Settings', open=True):
|
481 |
speed = gr.Slider(minimum=0.5, maximum=2, value=1, step=0.1, label='⚡️ Speed', info='Adjust the speaking speed')
|
482 |
-
trim = gr.Slider(minimum=0, maximum=24000, value=0, step=1000, label='✂️ Trim', info='Cut from both ends')
|
483 |
pad_between = gr.Slider(minimum=0, maximum=24000, value=0, step=1000, label='🔇 Pad Between', info='How much silence to insert between segments')
|
484 |
with gr.Row():
|
485 |
segment_btn = gr.Button('Tokenize', variant='primary')
|
@@ -543,6 +543,10 @@ Random Japanese texts: CC0 public domain from [Common Voice](https://github.com/
|
|
543 |
|
544 |
with gr.Blocks() as changelog:
|
545 |
gr.Markdown('''
|
|
|
|
|
|
|
|
|
546 |
**25 Nov 2024**<br/>
|
547 |
🎨 Voice Mixer added
|
548 |
|
|
|
479 |
audio_stream = gr.Audio(label='Output Audio Stream', interactive=False, streaming=True, autoplay=True)
|
480 |
with gr.Accordion('Audio Settings', open=True):
|
481 |
speed = gr.Slider(minimum=0.5, maximum=2, value=1, step=0.1, label='⚡️ Speed', info='Adjust the speaking speed')
|
482 |
+
trim = gr.Slider(minimum=0, maximum=24000, value=0, step=1000, label='✂️ Trim', info='Cut from both ends of each segment')
|
483 |
pad_between = gr.Slider(minimum=0, maximum=24000, value=0, step=1000, label='🔇 Pad Between', info='How much silence to insert between segments')
|
484 |
with gr.Row():
|
485 |
segment_btn = gr.Button('Tokenize', variant='primary')
|
|
|
543 |
|
544 |
with gr.Blocks() as changelog:
|
545 |
gr.Markdown('''
|
546 |
+
**28 Nov 2024**<br/>
|
547 |
+
🥈 CPU fallback
|
548 |
+
🌊 Long-Form streaming and stop button
|
549 |
+
|
550 |
**25 Nov 2024**<br/>
|
551 |
🎨 Voice Mixer added
|
552 |
|