Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -55,6 +55,12 @@ file_transcribe = gr.Interface(
|
|
55 |
fn=transcribe_speech,
|
56 |
inputs=gr.Audio(sources="upload", type="filepath"),
|
57 |
outputs=gr.components.Textbox(),
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
)
|
59 |
with demo:
|
60 |
gr.TabbedInterface(
|
|
|
55 |
fn=transcribe_speech,
|
56 |
inputs=gr.Audio(sources="upload", type="filepath"),
|
57 |
outputs=gr.components.Textbox(),
|
58 |
+
examples=[
|
59 |
+
[os.path.join(os.path.dirname("."),"audio/chalyaami.mp3")],
|
60 |
+
[os.path.join(os.path.dirname("."),"audio/ekdonteen.flac")],
|
61 |
+
[os.path.join(os.path.dirname("."),"audio/heyatachadjaale.mp3")],
|
62 |
+
[os.path.join(os.path.dirname("."),"audio/panaji1920-9.mp3")],
|
63 |
+
],
|
64 |
)
|
65 |
with demo:
|
66 |
gr.TabbedInterface(
|