Udoe / app.py
Namazlol's picture
Create app.py
b42c214 verified
raw
history blame
209 Bytes
import gradio as gr
def get_audio():
return "https://huggingface.co/spaces/your-username/my-audio-hosting/blob/main/mysong.mp3"
demo = gr.Interface(fn=get_audio, inputs=[], outputs="audio")
demo.launch()