Update rvc.py
Browse files
rvc.py
CHANGED
@@ -84,11 +84,11 @@ with gr.Blocks(title="Easy 🔊 GUI",theme="Hev832/Applio") as app:
|
|
84 |
pitch_lvl_input = gr.Number(label="Pitch",value=0)
|
85 |
pitch_algo_input = gr.Dropdown(["pm", "harvest", "crepe", "rmvpe", "rmvpe+"], label="Pitch Algorithm")
|
86 |
submit_button = gr.Button("Convert Audio")
|
87 |
-
output_Audio= gr.Audio(label="Conversion Result")
|
88 |
submit_button.click(
|
89 |
apply_conversion,
|
90 |
inputs=[audio_files_input, file_model_input, file_index_input, pitch_lvl_input, pitch_algo_input],
|
91 |
-
outputs=
|
92 |
)
|
93 |
|
94 |
|
|
|
84 |
pitch_lvl_input = gr.Number(label="Pitch",value=0)
|
85 |
pitch_algo_input = gr.Dropdown(["pm", "harvest", "crepe", "rmvpe", "rmvpe+"], label="Pitch Algorithm")
|
86 |
submit_button = gr.Button("Convert Audio")
|
87 |
+
output_Audio = gr.Audio(label="Conversion Result")
|
88 |
submit_button.click(
|
89 |
apply_conversion,
|
90 |
inputs=[audio_files_input, file_model_input, file_index_input, pitch_lvl_input, pitch_algo_input],
|
91 |
+
outputs=output_Audio
|
92 |
)
|
93 |
|
94 |
|