Update app.py
Browse files
app.py
CHANGED
@@ -1630,11 +1630,10 @@ with gr.Blocks(theme=theme) as app:
|
|
1630 |
|
1631 |
animate_button.click(fn=mouth, inputs=[size, face, vc_output2, faces], outputs=[animation, preview])
|
1632 |
|
1633 |
-
with gr.Accordion("Advanced Options", open=False):
|
1634 |
-
with gr.Row()):
|
1635 |
f0method0 = gr.Radio(
|
1636 |
label="Optional: Change the Pitch Extraction Algorithm. Extraction methods are sorted from 'worst quality' to 'best quality'. If you don't know what you're doing, leave rmvpe.",
|
1637 |
-
choices=["rmvpe"], # Fork Feature. Add Crepe-Tiny
|
1638 |
value="rmvpe",
|
1639 |
interactive=True,
|
1640 |
)
|
|
|
1630 |
|
1631 |
animate_button.click(fn=mouth, inputs=[size, face, vc_output2, faces], outputs=[animation, preview])
|
1632 |
|
1633 |
+
with gr.Accordion("Advanced Options", open=False, visible=False):
|
|
|
1634 |
f0method0 = gr.Radio(
|
1635 |
label="Optional: Change the Pitch Extraction Algorithm. Extraction methods are sorted from 'worst quality' to 'best quality'. If you don't know what you're doing, leave rmvpe.",
|
1636 |
+
choices=["pm", "dio", "crepe-tiny", "mangio-crepe-tiny", "crepe", "harvest", "mangio-crepe", "rmvpe"], # Fork Feature. Add Crepe-Tiny
|
1637 |
value="rmvpe",
|
1638 |
interactive=True,
|
1639 |
)
|