Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
def audioStyleTransfer(
|
4 |
return name
|
5 |
|
6 |
iface = gr.Interface(fn=audioStyleTransfer, inputs=[gr.Audio(source="upload",type="filepath",label="Content"),gr.Audio(source="upload",type="filepath",label="Style")], outputs=gr.Audio(label="Output"))
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
def audioStyleTransfer(content,style):
|
4 |
return name
|
5 |
|
6 |
iface = gr.Interface(fn=audioStyleTransfer, inputs=[gr.Audio(source="upload",type="filepath",label="Content"),gr.Audio(source="upload",type="filepath",label="Style")], outputs=gr.Audio(label="Output"))
|