Spaces:
Runtime error
Runtime error
Commit
·
b67345a
1
Parent(s):
7dd7859
Update app.py
Browse files
app.py
CHANGED
@@ -37,8 +37,14 @@ def translate(audio):
|
|
37 |
|
38 |
return transcription.language
|
39 |
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
|
41 |
-
|
42 |
|
43 |
-
iface = gr.Interface(fn=translate, inputs=
|
44 |
iface.launch()
|
|
|
37 |
|
38 |
return transcription.language
|
39 |
|
40 |
+
gr.Markdown("""
|
41 |
+
# Emotion Detection From Speech Using Whisper
|
42 |
+
|
43 |
+
""", elem_id="about")
|
44 |
+
|
45 |
+
audio_input = gr.Audio(source="microphone",type="filepath", show_label=False)
|
46 |
|
47 |
+
transcript_output = gr.Textbox(label="Transcription in your the language you spoke")
|
48 |
|
49 |
+
iface = gr.Interface(fn=translate, inputs=audio_input, outputs=transcript_output)
|
50 |
iface.launch()
|