Alberto Primerano
Change Interface
fd6c4e0
raw
history blame
311 Bytes
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()