Demo / app.py
Add-Vishnu's picture
Update app.py
990e572
raw
history blame
185 Bytes
import gradio as gr
def dem(audio):
print(type(audio))
return audio
demo = gr.Interface(
dem,
inputs="microphone",
outputs="audio",
)
demo.launch()