Spaces:
Runtime error
Runtime error
File size: 293 Bytes
05c2757 d9aff20 05c2757 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import gradio as gr
import hopsworks
def vocal_remove(audio):
return audio
iface = gr.Interface(
fn=vocal_remove,
inputs=gr.Audio(source="upload", type="filepath"),
outputs="audio",
title="Vocal Remover",
description="Removes Vocals from song",
)
iface.launch() |