Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -221,7 +221,6 @@ initial_md = """
|
|
| 221 |
|
| 222 |
Input text ➡[(edge-tts)](https://github.com/rany2/edge-tts)➡ Speech mp3 file ➡[(RVC)](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI)➡ Final output
|
| 223 |
|
| 224 |
-
This runs on the 🤗 server's cpu, so it may be slow.
|
| 225 |
|
| 226 |
Input characters are limited to 280 characters, and the speech audio is limited to 20 seconds in this 🤗 space.
|
| 227 |
|
|
@@ -244,8 +243,8 @@ with app:
|
|
| 244 |
with gr.Column():
|
| 245 |
f0_method = gr.Radio(
|
| 246 |
label="Pitch extraction method (pm: very fast, low quality, rmvpe: a little slow, high quality)",
|
| 247 |
-
choices=["pm", "rmvpe"], # harvest and crepe is too slow
|
| 248 |
-
value="
|
| 249 |
interactive=True,
|
| 250 |
)
|
| 251 |
index_rate = gr.Slider(
|
|
|
|
| 221 |
|
| 222 |
Input text ➡[(edge-tts)](https://github.com/rany2/edge-tts)➡ Speech mp3 file ➡[(RVC)](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI)➡ Final output
|
| 223 |
|
|
|
|
| 224 |
|
| 225 |
Input characters are limited to 280 characters, and the speech audio is limited to 20 seconds in this 🤗 space.
|
| 226 |
|
|
|
|
| 243 |
with gr.Column():
|
| 244 |
f0_method = gr.Radio(
|
| 245 |
label="Pitch extraction method (pm: very fast, low quality, rmvpe: a little slow, high quality)",
|
| 246 |
+
choices=["pm", "harvest," "crepe", "rmvpe"], # harvest and crepe is too slow
|
| 247 |
+
value="pm",
|
| 248 |
interactive=True,
|
| 249 |
)
|
| 250 |
index_rate = gr.Slider(
|