Spaces:
Runtime error
Runtime error
alex
commited on
Commit
·
490cabd
1
Parent(s):
25390fa
prompt default value added
Browse files
app.py
CHANGED
|
@@ -300,12 +300,13 @@ with gr.Blocks(css=css, theme=theme) as demo:
|
|
| 300 |
# Image section
|
| 301 |
image = gr.Image(type="filepath", label="Image", height=360)
|
| 302 |
|
| 303 |
-
video_text_prompt = gr.Textbox(label="
|
| 304 |
lines=5,
|
|
|
|
| 305 |
placeholder="Describe your video...")
|
| 306 |
sample_steps = gr.Slider(
|
| 307 |
value=50,
|
| 308 |
-
label="
|
| 309 |
minimum=20,
|
| 310 |
maximum=100,
|
| 311 |
step=1.0
|
|
|
|
| 300 |
# Image section
|
| 301 |
image = gr.Image(type="filepath", label="Image", height=360)
|
| 302 |
|
| 303 |
+
video_text_prompt = gr.Textbox(label="Scene Prompt",
|
| 304 |
lines=5,
|
| 305 |
+
value="A person in a scene that their mouth is slightly open as they speak, <S>Enjoy this moment<E> and as they roll their eyes. <AUDCAP>Clear voice, faint ambient outdoor sounds.<ENDAUDCAP>",
|
| 306 |
placeholder="Describe your video...")
|
| 307 |
sample_steps = gr.Slider(
|
| 308 |
value=50,
|
| 309 |
+
label="Generation Steps",
|
| 310 |
minimum=20,
|
| 311 |
maximum=100,
|
| 312 |
step=1.0
|