Spaces:
Runtime error
Runtime error
kevinwang676
commited on
Commit
•
e8438f1
1
Parent(s):
9223243
Update app.py
Browse files
app.py
CHANGED
@@ -600,12 +600,12 @@ with gr.Blocks(theme=theme, css=css) as App:
|
|
600 |
with gr.Column():
|
601 |
inp1 = gr.Textbox(label="为视频配上精彩的文案吧(选填)")
|
602 |
inp2 = new_song
|
603 |
-
|
604 |
btn = gr.Button("生成您的专属音乐视频吧")
|
605 |
|
606 |
with gr.Column():
|
607 |
out1 = gr.Video(label='您的专属音乐视频')
|
608 |
-
btn.click(fn=infer, inputs=[inp1, inp2], outputs=[out1])
|
609 |
|
610 |
gr.Markdown("### <center>注意❗:请不要生成会对个人以及组织造成侵害的内容,此程序仅供科研、学习及个人娱乐使用。</center>")
|
611 |
gr.HTML('''
|
|
|
600 |
with gr.Column():
|
601 |
inp1 = gr.Textbox(label="为视频配上精彩的文案吧(选填)")
|
602 |
inp2 = new_song
|
603 |
+
inp3 = gr.Image(source='upload', type='filepath', label="上传一张背景图片吧")
|
604 |
btn = gr.Button("生成您的专属音乐视频吧")
|
605 |
|
606 |
with gr.Column():
|
607 |
out1 = gr.Video(label='您的专属音乐视频')
|
608 |
+
btn.click(fn=infer, inputs=[inp1, inp2, inp3], outputs=[out1])
|
609 |
|
610 |
gr.Markdown("### <center>注意❗:请不要生成会对个人以及组织造成侵害的内容,此程序仅供科研、学习及个人娱乐使用。</center>")
|
611 |
gr.HTML('''
|