Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -37,9 +37,9 @@ def find_closest_mp3(query):
|
|
37 |
return file_name_without_extension + '.mp3'
|
38 |
my_theme = gr.Theme.from_hub("ysharma/llamas")
|
39 |
with gr.Blocks(theme=my_theme) as demo:
|
40 |
-
gr.Markdown("""<h1 style="text-align: center;"
|
41 |
# video=gr.PlayableVideo("final_video.mp4
|
42 |
-
gr.Markdown("""<h2 style="text-align: center;"> Get a song for your dream, but sung by AI!</h2>""")
|
43 |
inp=gr.Textbox(placeholder="Describe your dream!",label="Your dream")
|
44 |
out=gr.Audio(label="Llamas singing your dream")
|
45 |
inp.change(find_closest_mp3,inp,out,scroll_to_output=True)
|
|
|
37 |
return file_name_without_extension + '.mp3'
|
38 |
my_theme = gr.Theme.from_hub("ysharma/llamas")
|
39 |
with gr.Blocks(theme=my_theme) as demo:
|
40 |
+
gr.Markdown("""<h1 style="text-align: center;">BeatLlama Dreambooth</h1>""")
|
41 |
# video=gr.PlayableVideo("final_video.mp4
|
42 |
+
gr.Markdown("""<h2 style="text-align: center;"><span style="color: white;"> Get a song for your dream, but sung by AI!</span></h2>""")
|
43 |
inp=gr.Textbox(placeholder="Describe your dream!",label="Your dream")
|
44 |
out=gr.Audio(label="Llamas singing your dream")
|
45 |
inp.change(find_closest_mp3,inp,out,scroll_to_output=True)
|