test / app.py
kadriu's picture
Update app.py
5f63f1b verified
raw
history blame contribute delete
No virus
178 Bytes
import gradio as gr
def record_audio(audio):
return audio
demo = gr.Interface(
record_audio,
gr.Audio(),
"audio"
)
if __name__ == "__main__":
demo.launch()