AK-12 commited on
Commit
29f3563
·
1 Parent(s): ce5d74c

update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -59,7 +59,7 @@ mic_translate = gr.Interface(
59
  fn=speech_to_speech_translation,
60
  inputs=gr.Audio(source="microphone", type="filepath"),
61
  outputs=gr.Audio(label="Generated Speech", type="numpy"),
62
- examples=[["./example.wav"]],
63
  title=title,
64
  description=description,
65
  )
@@ -68,7 +68,7 @@ file_translate = gr.Interface(
68
  fn=speech_to_speech_translation,
69
  inputs=gr.Audio(source="upload", type="filepath"),
70
  outputs=gr.Audio(label="Generated Speech", type="numpy"),
71
- examples=[["/example.wav"]],
72
  title=title,
73
  description=description,
74
  )
 
59
  fn=speech_to_speech_translation,
60
  inputs=gr.Audio(source="microphone", type="filepath"),
61
  outputs=gr.Audio(label="Generated Speech", type="numpy"),
62
+ # examples=[["./example.wav"]],
63
  title=title,
64
  description=description,
65
  )
 
68
  fn=speech_to_speech_translation,
69
  inputs=gr.Audio(source="upload", type="filepath"),
70
  outputs=gr.Audio(label="Generated Speech", type="numpy"),
71
+ # examples=[["/example.wav"]],
72
  title=title,
73
  description=description,
74
  )