Hev832 commited on
Commit
8f4a812
·
verified ·
1 Parent(s): 2a2b216

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -1
app.py CHANGED
@@ -212,6 +212,16 @@ with gr.Blocks() as demo:
212
  run_button = gr.Button("Download and Slice Audio")
213
  run_button.click(fn=process_audio, inputs=[url_input, audio_name_input], outputs=[result_output])
214
  push_hub.click(fn=push_to_hub, inputs=[result_output, hf_token_input, repo_id_input], outputs=[upload_output])
215
-
 
 
 
 
 
 
 
 
 
 
216
 
217
  demo.launch()
 
212
  run_button = gr.Button("Download and Slice Audio")
213
  run_button.click(fn=process_audio, inputs=[url_input, audio_name_input], outputs=[result_output])
214
  push_hub.click(fn=push_to_hub, inputs=[result_output, hf_token_input, repo_id_input], outputs=[upload_output])
215
+ with gr.TabItem("note"):
216
+ with gr.Row():
217
+ gr.Markodwn(
218
+ """
219
+ # Note:
220
+ If you use google colab make sure you follow this step
221
+ `example:`
222
+ !unzip content/{audio_name}.zip content/{audio_name}/{audio_name}
223
+ """
224
+ )
225
+
226
 
227
  demo.launch()