Spaces:
Running
Running
modify app
Browse files
app.py
CHANGED
@@ -156,17 +156,17 @@ def update_ito_output(all_results, selected_step):
|
|
156 |
with gr.Blocks() as demo:
|
157 |
gr.Markdown("# ITO-Master: Inference Time Optimization for Mastering Style Transfer")
|
158 |
with gr.Row():
|
159 |
-
gr.Markdown("Demo of Inference Time Optimization (ITO) for Music Mastering Style Transfer
|
160 |
-
|
161 |
-
|
162 |
-
gr.Image("ito_snow.png", width=
|
163 |
|
164 |
gr.Markdown("# Step 1: Mastering Style Transfer")
|
165 |
|
166 |
with gr.Tab("Upload Audio"):
|
167 |
with gr.Row():
|
168 |
-
input_audio = gr.Audio(label="Source Audio ($x_
|
169 |
-
reference_audio = gr.Audio(label="Reference Style Audio ($x_
|
170 |
|
171 |
process_button = gr.Button("Process Mastering Style Transfer")
|
172 |
|
|
|
156 |
with gr.Blocks() as demo:
|
157 |
gr.Markdown("# ITO-Master: Inference Time Optimization for Mastering Style Transfer")
|
158 |
with gr.Row():
|
159 |
+
gr.Markdown(r"Demo of Inference Time Optimization (ITO) for Music Mastering Style Transfer.\n \
|
160 |
+
The mastering style transfer is performed by a differentiable audio processing model, and the predicted parameters are shown as the output.\n \
|
161 |
+
Perform mastering style transfer with an input source audio and a reference mastering style audio. On top of this result, you can perform ITO to optimize the reference embedding $z_\text{ref}$ to further gain control over the output mastering style.")
|
162 |
+
gr.Image("ito_snow.png", width=350)
|
163 |
|
164 |
gr.Markdown("# Step 1: Mastering Style Transfer")
|
165 |
|
166 |
with gr.Tab("Upload Audio"):
|
167 |
with gr.Row():
|
168 |
+
input_audio = gr.Audio(label=r"Source Audio ($x_\text{in}$)")
|
169 |
+
reference_audio = gr.Audio(label="Reference Style Audio ($x_\\text{ref}$)")
|
170 |
|
171 |
process_button = gr.Button("Process Mastering Style Transfer")
|
172 |
|