NeoPy commited on
Commit
8d4e228
·
verified ·
1 Parent(s): 8cc57dd

Update main/app/app.py

Browse files
Files changed (1) hide show
  1. main/app/app.py +2 -1
main/app/app.py CHANGED
@@ -79,7 +79,8 @@ with gr.Blocks(title=" Ultimate RVC Maker ⚡", theme=theme) as app:
79
  with gr.Row():
80
  clean_strength = gr.Slider(label=translations["clean_strength"], info=translations["clean_strength_info"], minimum=0, maximum=1, value=0.5, step=0.1, interactive=True, visible=cleaner.value)
81
  sample_rate1 = gr.Slider(minimum=8000, maximum=96000, step=1, value=44100, label=translations["sr"], info=translations["sr_info"], interactive=True)
82
- with gr.Row():
 
83
  with gr.Accordion(translations["input_output"], open=False):
84
  format = gr.Radio(label=translations["export_format"], info=translations["export_info"], choices=["wav", "mp3", "flac", "ogg", "opus", "m4a", "mp4", "aac", "alac", "wma", "aiff", "webm", "ac3"], value="wav", interactive=True)
85
  input_audio = gr.Dropdown(label=translations["audio_path"], value="", choices=paths_for_files, allow_custom_value=True, interactive=True)
 
79
  with gr.Row():
80
  clean_strength = gr.Slider(label=translations["clean_strength"], info=translations["clean_strength_info"], minimum=0, maximum=1, value=0.5, step=0.1, interactive=True, visible=cleaner.value)
81
  sample_rate1 = gr.Slider(minimum=8000, maximum=96000, step=1, value=44100, label=translations["sr"], info=translations["sr_info"], interactive=True)
82
+ with gr.Column():
83
+
84
  with gr.Accordion(translations["input_output"], open=False):
85
  format = gr.Radio(label=translations["export_format"], info=translations["export_info"], choices=["wav", "mp3", "flac", "ogg", "opus", "m4a", "mp4", "aac", "alac", "wma", "aiff", "webm", "ac3"], value="wav", interactive=True)
86
  input_audio = gr.Dropdown(label=translations["audio_path"], value="", choices=paths_for_files, allow_custom_value=True, interactive=True)