Spaces:
Sleeping
Sleeping
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() |