alex
commited on
Commit
·
17b74df
1
Parent(s):
ef19c14
guidelines
Browse files
app.py
CHANGED
|
@@ -270,6 +270,23 @@ with gr.Blocks(css=css) as demo:
|
|
| 270 |
step=1.0
|
| 271 |
)
|
| 272 |
run_btn = gr.Button("Action 🎬", variant="primary")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 273 |
|
| 274 |
with gr.Accordion("🎬 Video Generation Options", open=False, visible=False):
|
| 275 |
video_height = gr.Number(minimum=128, maximum=1280, value=512, step=32, label="Video Height")
|
|
|
|
| 270 |
step=1.0
|
| 271 |
)
|
| 272 |
run_btn = gr.Button("Action 🎬", variant="primary")
|
| 273 |
+
|
| 274 |
+
gr.Markdown(
|
| 275 |
+
"""
|
| 276 |
+
💡 **Prompt Guidelines**
|
| 277 |
+
```
|
| 278 |
+
Describe the Scene and Character(s) performance (repeat as needed)
|
| 279 |
+
<S>Dialogue line<E> (repeat as needed)
|
| 280 |
+
<AUDCAP>character voice & atmosphere of the scene<ENDAUDCAP>
|
| 281 |
+
```
|
| 282 |
+
""",
|
| 283 |
+
elem_classes="guideline-bubble"
|
| 284 |
+
)
|
| 285 |
+
prompt = gr.Textbox(
|
| 286 |
+
lines=6,
|
| 287 |
+
placeholder="Write your scene prompt here...",
|
| 288 |
+
label="Prompt"
|
| 289 |
+
)
|
| 290 |
|
| 291 |
with gr.Accordion("🎬 Video Generation Options", open=False, visible=False):
|
| 292 |
video_height = gr.Number(minimum=128, maximum=1280, value=512, step=32, label="Video Height")
|