RamAnanth1 commited on
Commit
b67345a
·
1 Parent(s): 7dd7859

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -2
app.py CHANGED
@@ -37,8 +37,14 @@ def translate(audio):
37
 
38
  return transcription.language
39
 
 
 
 
 
 
 
40
 
41
- record_input = gr.Audio(source="microphone",type="filepath", show_label=False)
42
 
43
- iface = gr.Interface(fn=translate, inputs=record_input, outputs="text")
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()