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