Spaces:
Runtime error
Runtime error
file info
Browse files- src/webui.py +1 -1
src/webui.py
CHANGED
@@ -226,7 +226,7 @@ if __name__ == '__main__':
|
|
226 |
show_file_upload_button = gr.Button('Upload file instead')
|
227 |
|
228 |
with gr.Column(visible=True) as file_upload_col:
|
229 |
-
local_file = gr.File(label='Audio file')
|
230 |
song_input_file = gr.UploadButton('Upload 📂', file_types=['audio'], variant='primary')
|
231 |
show_yt_link_button = gr.Button('Paste YouTube link/Path to local file instead')
|
232 |
song_input_file.upload(process_file_upload, inputs=[song_input_file], outputs=[local_file, song_input])
|
|
|
226 |
show_file_upload_button = gr.Button('Upload file instead')
|
227 |
|
228 |
with gr.Column(visible=True) as file_upload_col:
|
229 |
+
local_file = gr.File(label='Audio file', info='Upload a local music file')
|
230 |
song_input_file = gr.UploadButton('Upload 📂', file_types=['audio'], variant='primary')
|
231 |
show_yt_link_button = gr.Button('Paste YouTube link/Path to local file instead')
|
232 |
song_input_file.upload(process_file_upload, inputs=[song_input_file], outputs=[local_file, song_input])
|