Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -299,11 +299,16 @@ def call_pipe(
|
|
| 299 |
return HunyuanVideoPipelineOutput(frames=video)
|
| 300 |
|
| 301 |
def main():
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 302 |
# Define the interface inputs
|
| 303 |
inputs = [
|
| 304 |
gr.Textbox(label="Prompt", value="a woman"),
|
| 305 |
-
gr.Image(label="Frame 1", type="
|
| 306 |
-
gr.Image(label="Frame 2", type="
|
| 307 |
# gr.Textbox(label="Frame 1 URL", value="https://i-bacon.bunkr.ru/11b45aa7-630b-4189-996f-a6b37a697786.png"),
|
| 308 |
# gr.Textbox(label="Frame 2 URL", value="https://i-bacon.bunkr.ru/2382224f-120e-482d-a75d-f1a1bf13038c.png"),
|
| 309 |
gr.Slider(minimum=0.1, maximum=20, step=0.1, label="Guidance Scale", value=6.0),
|
|
|
|
| 299 |
return HunyuanVideoPipelineOutput(frames=video)
|
| 300 |
|
| 301 |
def main():
|
| 302 |
+
gr.Markdown(
|
| 303 |
+
"""
|
| 304 |
+
- https://i-bacon.bunkr.ru/11b45aa7-630b-4189-996f-a6b37a697786.png
|
| 305 |
+
- https://i-bacon.bunkr.ru/2382224f-120e-482d-a75d-f1a1bf13038c.png
|
| 306 |
+
""")
|
| 307 |
# Define the interface inputs
|
| 308 |
inputs = [
|
| 309 |
gr.Textbox(label="Prompt", value="a woman"),
|
| 310 |
+
gr.Image(label="Frame 1", type="filepath"),
|
| 311 |
+
gr.Image(label="Frame 2", type="filepath"),
|
| 312 |
# gr.Textbox(label="Frame 1 URL", value="https://i-bacon.bunkr.ru/11b45aa7-630b-4189-996f-a6b37a697786.png"),
|
| 313 |
# gr.Textbox(label="Frame 2 URL", value="https://i-bacon.bunkr.ru/2382224f-120e-482d-a75d-f1a1bf13038c.png"),
|
| 314 |
gr.Slider(minimum=0.1, maximum=20, step=0.1, label="Guidance Scale", value=6.0),
|