File size: 472 Bytes
b42c214 fbac62d b42c214 ece415a fbac62d b42c214 651de74 fbac62d 651de74 b42c214 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import gradio as gr
import requests
AUDIO_URL = "https://huggingface.co/spaces/Namazlol/Udoe/resolve/main/mysong.mp3"
def download_audio():
response = requests.get(AUDIO_URL)
with open("mysong.mp3", "wb") as f:
f.write(response.content)
return "mysong.mp3"
demo = gr.Interface(
fn=download_audio,
inputs=[],
outputs=gr.Audio(type="filepath"),
title="Audio Player",
description="Click play to listen to the song."
)
demo.launch() |