Aashiue's picture
Update app.py
74db137
raw
history blame contribute delete
217 Bytes
import gradio as gr
def emotiondetection(audio):
text = "emotion"
return text
gr.Interface(
fn = emotiondetection,
inputs = gr.Audio(source="microphone", type="filepath"),
outputs = "text").launch()