Spaces:
Running
Running
Update src/covergen.py
Browse files- src/covergen.py +8 -8
src/covergen.py
CHANGED
@@ -82,10 +82,10 @@ if __name__ == '__main__':
|
|
82 |
show_enter_button.click(swap_buttons, outputs=[show_enter_button, show_upload_button])
|
83 |
|
84 |
with gr.Group():
|
85 |
-
with gr.Row(
|
86 |
-
generate_btn = gr.Button("Generate", variant=
|
87 |
-
converted_voice = gr.Audio(label='Converted Voice', scale=
|
88 |
-
output_format = gr.Dropdown(['mp3', 'flac', 'wav'], value='mp3', label='File Format',
|
89 |
|
90 |
with gr.Accordion('Voice Conversion Settings', open=False):
|
91 |
with gr.Group():
|
@@ -152,10 +152,10 @@ if __name__ == '__main__':
|
|
152 |
show_enter_inst_button.click(swap_buttons, outputs=[show_enter_inst_button, show_upload_inst_button])
|
153 |
|
154 |
with gr.Group():
|
155 |
-
with gr.Row(
|
156 |
-
process_btn = gr.Button("Process", variant='primary', scale=
|
157 |
-
ai_cover = gr.Audio(label='AI-Cover', scale=
|
158 |
-
output_format = gr.Dropdown(['mp3', 'flac', 'wav'], value='mp3', label='File Format',
|
159 |
|
160 |
with gr.Accordion('Audio Mixing Settings', open=False):
|
161 |
gr.HTML('<center><h2>Volume Adjustment</h2></center>')
|
|
|
82 |
show_enter_button.click(swap_buttons, outputs=[show_enter_button, show_upload_button])
|
83 |
|
84 |
with gr.Group():
|
85 |
+
with gr.Row():
|
86 |
+
generate_btn = gr.Button("Generate", variant="primary", scale=2)
|
87 |
+
converted_voice = gr.Audio(label='Converted Voice', scale=9)
|
88 |
+
output_format = gr.Dropdown(['mp3', 'flac', 'wav'], value='mp3', label='File Format', allow_custom_value=False, filterable=False, scale=1)
|
89 |
|
90 |
with gr.Accordion('Voice Conversion Settings', open=False):
|
91 |
with gr.Group():
|
|
|
152 |
show_enter_inst_button.click(swap_buttons, outputs=[show_enter_inst_button, show_upload_inst_button])
|
153 |
|
154 |
with gr.Group():
|
155 |
+
with gr.Row():
|
156 |
+
process_btn = gr.Button("Process", variant='primary', scale=2)
|
157 |
+
ai_cover = gr.Audio(label='AI-Cover', scale=9)
|
158 |
+
output_format = gr.Dropdown(['mp3', 'flac', 'wav'], value='mp3', label='File Format', allow_custom_value=False, filterable=False, scale=1)
|
159 |
|
160 |
with gr.Accordion('Audio Mixing Settings', open=False):
|
161 |
gr.HTML('<center><h2>Volume Adjustment</h2></center>')
|