Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -252,12 +252,12 @@ loras = [
|
|
| 252 |
RUNTIME_LORA_CHOICES = [
|
| 253 |
("No LoRA", -1),
|
| 254 |
("Static", 0),
|
| 255 |
-
("
|
| 256 |
-
("
|
| 257 |
-
("
|
| 258 |
-
("
|
| 259 |
-
("
|
| 260 |
-
("
|
| 261 |
]
|
| 262 |
|
| 263 |
# Initialize pipeline WITHOUT text encoder (gemma_root=None)
|
|
@@ -446,7 +446,7 @@ class PromptBox(gr.HTML):
|
|
| 446 |
class CameraDropdown(gr.HTML):
|
| 447 |
"""
|
| 448 |
Custom dropdown (More-style).
|
| 449 |
-
Outputs: selected option string, e.g. "
|
| 450 |
"""
|
| 451 |
def __init__(self, choices, value="None", title="Camera LoRA", **kwargs):
|
| 452 |
if not choices:
|
|
@@ -1298,7 +1298,7 @@ with gr.Blocks(title="LTX-2 Video Distilled 🎥🔈") as demo:
|
|
| 1298 |
[
|
| 1299 |
"wednesday.png",
|
| 1300 |
"A cinematic close-up of Wednesday Addams frozen mid-dance on a dark, blue-lit ballroom floor as students move indistinctly behind her, their footsteps and muffled music reduced to a distant, underwater thrum; the audio foregrounds her steady breathing and the faint rustle of fabric as she slowly raises one arm, never breaking eye contact with the camera, then after a deliberately long silence she speaks in a flat, dry, perfectly controlled voice, “I don’t dance… I vibe code,” each word crisp and unemotional, followed by an abrupt cutoff of her voice as the background sound swells slightly, reinforcing the deadpan humor, with precise lip sync, minimal facial movement, stark gothic lighting, and cinematic realism.",
|
| 1301 |
-
"
|
| 1302 |
"16:9",
|
| 1303 |
],
|
| 1304 |
[
|
|
|
|
| 252 |
RUNTIME_LORA_CHOICES = [
|
| 253 |
("No LoRA", -1),
|
| 254 |
("Static", 0),
|
| 255 |
+
("Zoom In", 1),
|
| 256 |
+
("Zoom Out", 2),
|
| 257 |
+
("Slide Left", 3),
|
| 258 |
+
("Slide Right", 4),
|
| 259 |
+
("Slide Down", 5),
|
| 260 |
+
("Slide Up", 6),
|
| 261 |
]
|
| 262 |
|
| 263 |
# Initialize pipeline WITHOUT text encoder (gemma_root=None)
|
|
|
|
| 446 |
class CameraDropdown(gr.HTML):
|
| 447 |
"""
|
| 448 |
Custom dropdown (More-style).
|
| 449 |
+
Outputs: selected option string, e.g. "Slide Left"
|
| 450 |
"""
|
| 451 |
def __init__(self, choices, value="None", title="Camera LoRA", **kwargs):
|
| 452 |
if not choices:
|
|
|
|
| 1298 |
[
|
| 1299 |
"wednesday.png",
|
| 1300 |
"A cinematic close-up of Wednesday Addams frozen mid-dance on a dark, blue-lit ballroom floor as students move indistinctly behind her, their footsteps and muffled music reduced to a distant, underwater thrum; the audio foregrounds her steady breathing and the faint rustle of fabric as she slowly raises one arm, never breaking eye contact with the camera, then after a deliberately long silence she speaks in a flat, dry, perfectly controlled voice, “I don’t dance… I vibe code,” each word crisp and unemotional, followed by an abrupt cutoff of her voice as the background sound swells slightly, reinforcing the deadpan humor, with precise lip sync, minimal facial movement, stark gothic lighting, and cinematic realism.",
|
| 1301 |
+
"Zoom Out",
|
| 1302 |
"16:9",
|
| 1303 |
],
|
| 1304 |
[
|