File size: 311 Bytes
51ff413
 
 
 
 
fd6c4e0
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import gradio as gr

def greet(name):
    return "Hello " + name + "!!"

iface = gr.Interface(
    fn=greet,
    inputs="file",
    outputs="audio",
    live=True,
    title="Audio Processor",
    description="Process audio files and return the processed audio.",
)
if __name__ == "__main__":
    iface.launch()