1
0
mirror of https://github.com/fumiama/Retrieval-based-Voice-Conversion-WebUI.git synced 2026-06-05 01:10:22 +08:00

fix(rt): replace with new f0

This commit is contained in:
源文雨
2024-11-29 00:35:10 +09:00
parent 51c85fcc49
commit ef9db1fd44
4 changed files with 23 additions and 117 deletions

6
web.py
View File

@@ -964,9 +964,7 @@ with gr.Blocks(title="RVC WebUI") as app:
"Select the pitch extraction algorithm ('pm': faster extraction but lower-quality speech; 'harvest': better bass but extremely slow; 'crepe': better quality but GPU intensive), 'rmvpe': best quality, and little GPU requirement"
),
choices=(
["pm", "harvest", "crepe", "rmvpe"]
if config.dml == False
else ["pm", "harvest", "rmvpe"]
["pm", "dio", "harvest", "crepe", "rmvpe", "fcpe"]
),
value="rmvpe",
interactive=True,
@@ -1209,7 +1207,7 @@ with gr.Blocks(title="RVC WebUI") as app:
label=i18n(
"Select the pitch extraction algorithm: when extracting singing, you can use 'pm' to speed up. For high-quality speech with fast performance, but worse CPU usage, you can use 'dio'. 'harvest' results in better quality but is slower. 'rmvpe' has the best results and consumes less CPU/GPU"
),
choices=["pm", "harvest", "dio", "rmvpe"],
choices=["pm", "dio", "harvest", "crepe", "rmvpe", "fcpe"],
value="rmvpe",
interactive=True,
)