Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -77,7 +77,6 @@ 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 |
-
# 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 |
|
@@ -102,7 +101,15 @@ with gr.Blocks(title="SonicOrbit", css="""
|
|
102 |
Enjoy your immersive 3D audio experience!
|
103 |
""")
|
104 |
|
105 |
-
gr.Markdown("
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
106 |
|
107 |
if __name__ == "__main__":
|
108 |
demo.launch()
|
|
|
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 |
output_audio = gr.Audio(type="filepath", label="Binaural Audio Output")
|
81 |
status_text = gr.Textbox(label="Status", interactive=False)
|
82 |
|
|
|
101 |
Enjoy your immersive 3D audio experience!
|
102 |
""")
|
103 |
|
104 |
+
gr.Markdown("""
|
105 |
+
<div class='footer'>
|
106 |
+
© 2025 SonicOrbit. All rights reserved.
|
107 |
+
<br>
|
108 |
+
Created with ❤️ by <a href="https://bilsimaging.com" target="_blank" style="color: #88aaff;">bilsimaging.com</a>
|
109 |
+
and this <a href="https://visitorbadge.io/status?path=https%3A%2F%2Fhuggingface.co%2Fspaces%2FBils%2FSonicOrbit" target="_blank">
|
110 |
+
<img src="https://api.visitorbadge.io/api/visitors?path=https%3A%2F%2Fhuggingface.co%2Fspaces%2FBils%2FSonicOrbit&countColor=%23263759" alt="visitor badge" /></a>
|
111 |
+
</div>
|
112 |
+
""")
|
113 |
|
114 |
if __name__ == "__main__":
|
115 |
demo.launch()
|