erastorgueva-nv commited on
Commit
bedaa4d
1 Parent(s): 1114317

add text about audio duration in step 1

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -255,7 +255,13 @@ with gr.Blocks(
255
 
256
  with gr.Row():
257
  with gr.Column():
258
- gr.HTML("<p><b>Step 1:</b> Upload an audio file or record with your microphone.</p>")
 
 
 
 
 
 
259
 
260
  audio_file = gr.Audio(sources=["microphone", "upload"], type="filepath")
261
 
 
255
 
256
  with gr.Row():
257
  with gr.Column():
258
+ gr.HTML(
259
+ "<p><b>Step 1:</b> Upload an audio file or record with your microphone.</p>"
260
+
261
+ "<p style='color: #A0A0A0;'>This demo supports audio files up to 10 mins long. "
262
+ "You can transcribe longer files locally with this NeMo "
263
+ "<a href='https://github.com/NVIDIA/NeMo/blob/main/examples/asr/speech_multitask/speech_to_text_aed_chunked_infer.py'>script</a>.</p>"
264
+ )
265
 
266
  audio_file = gr.Audio(sources=["microphone", "upload"], type="filepath")
267