Spaces:
Build error
Build error
Commit ·
be81083
1
Parent(s): edd98f3
Update app.py
Browse files
app.py
CHANGED
|
@@ -118,6 +118,7 @@ def get_interpolation_module(encodeCache):
|
|
| 118 |
gr.Markdown("Test Interpolation. Sounds that you sampled can be added to the input dropdown by clicking [Refresh].")
|
| 119 |
with gr.Row():
|
| 120 |
with gr.Column():
|
|
|
|
| 121 |
with gr.Row():
|
| 122 |
first_interpulation_input = gr.Dropdown(list(INIT_ENCODE_CACHE.keys()), label="First input")
|
| 123 |
second_interpulation_input = gr.Dropdown(list(INIT_ENCODE_CACHE.keys()), label="Second input")
|
|
@@ -128,7 +129,6 @@ def get_interpolation_module(encodeCache):
|
|
| 128 |
second_input_audio.style(length=125)
|
| 129 |
|
| 130 |
interpulation_input_ratio = gr.Slider(minimum=-0.20, maximum=1.20, value=0.5, step=0.01, label="Ratio of the first input.")
|
| 131 |
-
interpulation_refresh_button = gr.Button(value="Refresh")
|
| 132 |
interpulation_button = gr.Button(value="Interpulate")
|
| 133 |
with gr.Column():
|
| 134 |
with gr.Row():
|
|
|
|
| 118 |
gr.Markdown("Test Interpolation. Sounds that you sampled can be added to the input dropdown by clicking [Refresh].")
|
| 119 |
with gr.Row():
|
| 120 |
with gr.Column():
|
| 121 |
+
interpulation_refresh_button = gr.Button(value="Refresh")
|
| 122 |
with gr.Row():
|
| 123 |
first_interpulation_input = gr.Dropdown(list(INIT_ENCODE_CACHE.keys()), label="First input")
|
| 124 |
second_interpulation_input = gr.Dropdown(list(INIT_ENCODE_CACHE.keys()), label="Second input")
|
|
|
|
| 129 |
second_input_audio.style(length=125)
|
| 130 |
|
| 131 |
interpulation_input_ratio = gr.Slider(minimum=-0.20, maximum=1.20, value=0.5, step=0.01, label="Ratio of the first input.")
|
|
|
|
| 132 |
interpulation_button = gr.Button(value="Interpulate")
|
| 133 |
with gr.Column():
|
| 134 |
with gr.Row():
|