Spaces:
Runtime error
Runtime error
juancopi81
commited on
Commit
•
33d0b35
1
Parent(s):
c9ebdba
Change prompt input
Browse files
app.py
CHANGED
@@ -47,7 +47,7 @@ def get_music(prompt):
|
|
47 |
return 'output.wav'
|
48 |
|
49 |
def infer(prompt):
|
50 |
-
image = get_bg_image(
|
51 |
audio = get_music(prompt)
|
52 |
return (
|
53 |
gr.make_waveform(audio, bg_image=image, bars_color=random.choice(COLORS)),
|
|
|
47 |
return 'output.wav'
|
48 |
|
49 |
def infer(prompt):
|
50 |
+
image = get_bg_image(prompt)
|
51 |
audio = get_music(prompt)
|
52 |
return (
|
53 |
gr.make_waveform(audio, bg_image=image, bars_color=random.choice(COLORS)),
|