Demo / app.py
Add-Vishnu's picture
Update app.py
1383ae5
raw
history blame
205 Bytes
import gradio as gr
def dem(audio):
print(type(audio))
return audio
demo = gr.Interface(
dem,
inputs=gr.Audio(sources=["microphone"]),
outputs="audio",
)
demo.launch()