Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -77,7 +77,8 @@ with gr.Blocks(title="SonicOrbit", css="""
|
|
77 |
rotation_speed = gr.Slider(0.01, 1.0, value=0.1, step=0.01, label="Rotation Speed (Hz)")
|
78 |
convert_button = gr.Button("Convert Audio")
|
79 |
with gr.Row():
|
80 |
-
|
|
|
81 |
status_text = gr.Textbox(label="Status", interactive=False)
|
82 |
|
83 |
convert_button.click(
|
|
|
77 |
rotation_speed = gr.Slider(0.01, 1.0, value=0.1, step=0.01, label="Rotation Speed (Hz)")
|
78 |
convert_button = gr.Button("Convert Audio")
|
79 |
with gr.Row():
|
80 |
+
# Changed type from "file" to "filepath"
|
81 |
+
output_audio = gr.Audio(type="filepath", label="Binaural Audio Output")
|
82 |
status_text = gr.Textbox(label="Status", interactive=False)
|
83 |
|
84 |
convert_button.click(
|