File size: 174 Bytes
de811b0
adc6d8b
be980dd
56811e2
be980dd
56811e2
adc6d8b
1
2
3
4
5
6
7
import gradio as gr

def process_image(audio):  
    return str(len(audio))

iface = gr.Interface(fn=process_image, inputs=["textbox","audio"], outputs="text")
iface.launch()