Spaces:
Sleeping
Sleeping
File size: 29,424 Bytes
9ada948 fb77fcd 9ada948 972c160 9ada948 fb77fcd 9ada948 ad9a360 080a03d 864541a 080a03d 864541a 080a03d 864541a 080a03d 864541a 080a03d 864541a 080a03d 864541a 080a03d 864541a 080a03d 864541a 080a03d 864541a 080a03d 864541a 080a03d 864541a 080a03d 864541a 080a03d 864541a 080a03d 864541a 080a03d 864541a e2fe30b e2e429c ad9a360 9ada948 972c160 9ada948 972c160 9ada948 972c160 9ada948 ad9a360 9ada948 972c160 9ada948 972c160 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 | # =============================================================================
# Installation and Setup
# =============================================================================
import os
import subprocess
import sys
# Disable torch.compile / dynamo before any torch import
# This prevents CUDA initialization issues in the Space environment
os.environ["TORCH_COMPILE_DISABLE"] = "1"
os.environ["TORCHDYNAMO_DISABLE"] = "1"
# Clone LTX-2 repo at specific commit for reproducibility
# The commit ensures we have the exact pipeline code matching our analysis
LTX_REPO_URL = "https://github.com/Lightricks/LTX-2.git"
LTX_REPO_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)), "LTX-2")
# Using specific commit for stability - can be updated to main later
LTX_COMMIT_SHA = "a2c3f24078eb918171967f74b6f66b756b29ee45"
if not os.path.exists(LTX_REPO_DIR):
print(f"Cloning {LTX_REPO_URL} at commit {LTX_COMMIT_SHA}...")
os.makedirs(LTX_REPO_DIR)
subprocess.run(["git", "init", LTX_REPO_DIR], check=True)
subprocess.run(["git", "remote", "add", "origin", LTX_REPO_URL], cwd=LTX_REPO_DIR, check=True)
subprocess.run(["git", "fetch", "--depth", "1", "origin", LTX_COMMIT_SHA], cwd=LTX_REPO_DIR, check=True)
subprocess.run(["git", "checkout", LTX_COMMIT_SHA], cwd=LTX_REPO_DIR, check=True)
# Add repo packages to Python path
# This allows us to import from ltx-core and ltx-pipelines
sys.path.insert(0, os.path.join(LTX_REPO_DIR, "packages", "ltx-pipelines", "src"))
sys.path.insert(0, os.path.join(LTX_REPO_DIR, "packages", "ltx-core", "src"))
# =============================================================================
# Imports
# =============================================================================
import logging
import random
import tempfile
from pathlib import Path
import torch
# Disable torch.compile/dynamo at runtime level
torch._dynamo.config.suppress_errors = True
torch._dynamo.config.disable = True
import gradio as gr
import spaces
import numpy as np
from huggingface_hub import hf_hub_download, snapshot_download
# Import from the cloned LTX-2 pipeline
# These imports come from ti2vid_two_stages_hq.py
from ltx_core.model.video_vae import TilingConfig, get_video_chunks_number
from ltx_core.quantization import QuantizationPolicy
from ltx_core.loader import LoraPathStrengthAndSDOps
from ltx_pipelines.ti2vid_two_stages_hq import TI2VidTwoStagesHQPipeline
from ltx_pipelines.utils.args import ImageConditioningInput
from ltx_pipelines.utils.media_io import encode_video
from ltx_pipelines.utils.constants import LTX_2_3_HQ_PARAMS
from ltx_core.components.guiders import MultiModalGuiderParams
# =============================================================================
# Constants and Configuration
# =============================================================================
# Model repository on Hugging Face
LTX_MODEL_REPO = "Lightricks/LTX-2.3"
GEMMA_REPO = "Lightricks/gemma-3-12b-it-qat-q4_0-unquantized"
# Default parameters from LTX_2_3_HQ_PARAMS
DEFAULT_FRAME_RATE = 24.0
# Resolution constraints (must be divisible by 64 for two-stage pipeline)
# The pipeline generates at half-resolution in Stage 1, so input must be divisible by 2
MIN_DIM = 256
MAX_DIM = 1280
STEP = 64 # Both width and height must be divisible by 64
# Duration constraints (frames must be 8*K + 1)
MIN_FRAMES = 9 # 8*1 + 1
MAX_FRAMES = 257 # 8*32 + 1
# Seed range
MAX_SEED = np.iinfo(np.int32).max
# Default prompts
DEFAULT_PROMPT = (
"A majestic eagle soaring over mountain peaks at sunset, "
"wings spread wide against the orange sky, feathers catching the light, "
"wind currents visible in the motion blur, cinematic slow motion, 4K quality"
)
DEFAULT_NEGATIVE_PROMPT = (
"worst quality, inconsistent motion, blurry, jittery, distorted, "
"deformed, artifacts, text, watermark, logo, frame, border, "
"low resolution, pixelated, unnatural, fake, CGI, cartoon"
)
# =============================================================================
# Model Download and Initialization
# =============================================================================
print("=" * 80)
print("Downloading LTX-2.3 models...")
print("=" * 80)
# Download all required model files
# 1. Dev checkpoint - full trainable 22B model
checkpoint_path = hf_hub_download(
repo_id=LTX_MODEL_REPO,
filename="ltx-2.3-22b-dev.safetensors"
)
print(f"Dev checkpoint: {checkpoint_path}")
# 2. Spatial upscaler - x2 upscaler for latent space
spatial_upsampler_path = hf_hub_download(
repo_id=LTX_MODEL_REPO,
filename="ltx-2.3-spatial-upscaler-x2-1.1.safetensors"
)
print(f"Spatial upsampler: {spatial_upsampler_path}")
# 3. Distilled LoRA - distilled knowledge in LoRA format (rank 384)
# This LoRA is specifically trained to work with the dev model
distilled_lora_path = hf_hub_download(
repo_id=LTX_MODEL_REPO,
filename="ltx-2.3-22b-distilled-lora-384.safetensors"
)
print(f"Distilled LoRA: {distilled_lora_path}")
# 4. Gemma text encoder - required for prompt encoding
gemma_root = snapshot_download(repo_id=GEMMA_REPO)
print(f"Gemma root: {gemma_root}")
print("=" * 80)
print("All models downloaded!")
print("=" * 80)
# =============================================================================
# Pipeline Initialization
# =============================================================================
# Create the LoraPathStrengthAndSDOps for distilled LoRA
# The sd_ops parameter uses the ComfyUI renaming map for compatibility
from ltx_core.loader import LTXV_LORA_COMFY_RENAMING_MAP
distilled_lora = [
LoraPathStrengthAndSDOps(
path=distilled_lora_path,
strength=1.0, # Will be set per-stage (0.25 for stage 1, 0.5 for stage 2)
sd_ops=LTXV_LORA_COMFY_RENAMING_MAP,
)
]
# Initialize the Two-Stage HQ Pipeline
# Key parameters:
# - checkpoint_path: Full dev model (trainable)
# - distilled_lora: LoRA containing distilled knowledge
# - distilled_lora_strength_stage_1: 0.25 (lighter application at half-res)
# - distilled_lora_strength_stage_2: 0.5 (stronger application after upscaling)
# - spatial_upsampler_path: Required for two-stage upscaling
# - gemma_root: Gemma text encoder for prompt encoding
print("Initializing LTX-2.3 Two-Stage HQ Pipeline...")
pipeline = TI2VidTwoStagesHQPipeline(
checkpoint_path=checkpoint_path,
distilled_lora=distilled_lora,
distilled_lora_strength_stage_1=0.25, # From HQ params
distilled_lora_strength_stage_2=0.50, # From HQ params
spatial_upsampler_path=spatial_upsampler_path,
gemma_root=gemma_root,
loras=(), # No additional custom LoRAs for this Space
quantization=QuantizationPolicy.fp8_cast(), # FP8 for memory efficiency
torch_compile=False, # Disable for Space compatibility
)
print("Pipeline initialized successfully!")
print("=" * 80)
# =============================================================================
# ZeroGPU Tensor Preloading
# =============================================================================
print("Preloading all models for ZeroGPU tensor packing...")
print("This may take a few minutes...")
# TI2VidTwoStagesHQPipeline uses:
# - Builder methods that return models directly when called
# - Context methods that return context managers when called
# We need to call these methods, capture the results, and preserve them
# 1. Load transformer via _transformer_ctx() (call first, then enter)
print(" Loading stage 1 transformer...")
_ctx = pipeline.stage_1._transformer_ctx() # Get context manager
_ctx.__enter__() # Enter context
_stage_1_transformer = _ctx.__dict__.get('transformer') or \
getattr(pipeline.stage_1, '_transformer', None)
# Replace _transformer_ctx with a lambda that returns cached model
pipeline.stage_1._transformer_ctx = lambda: _ctx
print(f" Captured stage 1 transformer: {type(_stage_1_transformer)}")
print(" Loading stage 2 transformer...")
_ctx = pipeline.stage_2._transformer_ctx()
_ctx.__enter__()
_stage_2_transformer = _ctx.__dict__.get('transformer') or \
getattr(pipeline.stage_2, '_transformer', None)
pipeline.stage_2._transformer_ctx = lambda: _ctx
print(f" Captured stage 2 transformer: {type(_stage_2_transformer)}")
# 2. Load text encoder via _text_encoder_ctx() (call first, then enter)
print(" Loading Gemma text encoder...")
_ctx = pipeline.prompt_encoder._text_encoder_ctx()
_ctx.__enter__()
_text_encoder = _ctx.__dict__.get('text_encoder') or \
getattr(pipeline.prompt_encoder, '_text_encoder', None)
# Store as instance attribute and create replacement lambda
pipeline.prompt_encoder._text_encoder = _text_encoder
pipeline.prompt_encoder._text_encoder_ctx = lambda: _ctx
print(f" Captured text encoder: {type(_text_encoder)}")
# 3. Load video encoder (builder method - returns model directly)
print(" Loading video encoder...")
_video_encoder = pipeline.prompt_encoder.video_encoder()
pipeline.prompt_encoder.video_encoder = lambda: _video_encoder
print(f" Captured video encoder: {type(_video_encoder)}")
# 4. Load video decoder (builder method)
print(" Loading video decoder...")
_video_decoder = pipeline.video_decoder._decoder_builder()
pipeline.video_decoder._decoder_builder = lambda: _video_decoder
if hasattr(pipeline.video_decoder, '_decoder'):
pipeline.video_decoder._decoder = _video_decoder
print(f" Captured video decoder: {type(_video_decoder)}")
# 5. Load audio decoder (builder method)
print(" Loading audio decoder...")
_audio_decoder = pipeline.audio_decoder._decoder_builder()
pipeline.audio_decoder._decoder_builder = lambda: _audio_decoder
if hasattr(pipeline.audio_decoder, '_decoder'):
pipeline.audio_decoder._decoder = _audio_decoder
print(f" Captured audio decoder: {type(_audio_decoder)}")
# 6. Load vocoder (builder method)
print(" Loading vocoder...")
if hasattr(pipeline.audio_decoder, '_vocoder_builder'):
_vocoder = pipeline.audio_decoder._vocoder_builder()
pipeline.audio_decoder._vocoder_builder = lambda: _vocoder
print(f" Captured vocoder: {type(_vocoder)}")
# 7. Load spatial upsampler (builder method)
print(" Loading spatial upsampler...")
_spatial_upsampler = pipeline.upsampler._upsampler_builder()
pipeline.upsampler._upsampler_builder = lambda: _spatial_upsampler
if hasattr(pipeline.upsampler, '_encoder'):
pipeline.upsampler._encoder = _spatial_upsampler
print(f" Captured spatial upsampler: {type(_spatial_upsampler)}")
# 8. Load image conditioner
print(" Loading image conditioner...")
if hasattr(pipeline, 'image_conditioner'):
if hasattr(pipeline.image_conditioner, 'video_encoder'):
_ic_encoder = pipeline.image_conditioner.video_encoder()
pipeline.image_conditioner.video_encoder = lambda: _ic_encoder
print(" Models captured and preserved for ZeroGPU tensor packing...")
print("All models preloaded for ZeroGPU tensor packing!")
print("=" * 80)
# =============================================================================
# Helper Functions
# =============================================================================
def log_memory(tag: str):
"""Log current GPU memory usage for debugging."""
if torch.cuda.is_available():
allocated = torch.cuda.memory_allocated() / 1024**3
peak = torch.cuda.max_memory_allocated() / 1024**3
free, total = torch.cuda.mem_get_info()
print(f"[VRAM {tag}] allocated={allocated:.2f}GB peak={peak:.2f}GB free={free / 1024**3:.2f}GB total={total / 1024**3:.2f}GB")
def calculate_frames(duration: float, frame_rate: float = DEFAULT_FRAME_RATE) -> int:
"""
Calculate number of frames from duration.
Frame count must be 8*K + 1 (K is a non-negative integer) for the LTX model.
This constraint comes from the temporal upsampling architecture.
Args:
duration: Duration in seconds
frame_rate: Frames per second
Returns:
Frame count that satisfies the 8*K + 1 constraint
"""
ideal_frames = int(duration * frame_rate)
# Ensure it's at least MIN_FRAMES
ideal_frames = max(ideal_frames, MIN_FRAMES)
# Round to nearest 8*K + 1
k = round((ideal_frames - 1) / 8)
frames = k * 8 + 1
# Clamp to max
return min(frames, MAX_FRAMES)
def validate_resolution(height: int, width: int) -> tuple[int, int]:
"""
Ensure resolution is valid for two-stage pipeline.
The two-stage pipeline requires:
- Both dimensions divisible by 64 (for final resolution)
- Stage 1 operates at half resolution (divisible by 32)
Args:
height: Target height
width: Target width
Returns:
Validated (height, width) tuple
"""
# Round to nearest multiple of 64
height = round(height / STEP) * STEP
width = round(width / STEP) * STEP
# Clamp to valid range
height = max(MIN_DIM, min(height, MAX_DIM))
width = max(MIN_DIM, min(width, MAX_DIM))
return height, width
def detect_aspect_ratio(image) -> str:
"""Detect the closest aspect ratio from an image for resolution presets."""
if image is None:
return "16:9"
if hasattr(image, "size"):
w, h = image.size
elif hasattr(image, "shape"):
h, w = image.shape[:2]
else:
return "16:9"
ratio = w / h
candidates = {"16:9": 16/9, "9:16": 9/16, "1:1": 1.0}
return min(candidates, key=lambda k: abs(ratio - candidates[k]))
# Resolution presets based on aspect ratio
RESOLUTIONS = {
"16:9": {"width": 1280, "height": 704}, # 960x540 * 1.33 = 1280x720, halved = 640x360 -> 1280x720
"9:16": {"width": 704, "height": 1280},
"1:1": {"width": 960, "height": 960},
}
def get_duration(
prompt: str,
negative_prompt: str,
input_image,
duration: float,
seed: int,
randomize_seed: bool,
height: int,
width: int,
enhance_prompt: bool,
video_cfg_scale: float,
video_stg_scale: float,
video_rescale_scale: float,
video_a2v_scale: float,
audio_cfg_scale: float,
audio_stg_scale: float,
audio_rescale_scale: float,
audio_v2a_scale: float,
progress,
) -> int:
"""
Dynamically calculate GPU duration based on generation parameters.
This is used by @spaces.GPU to set the appropriate time limit.
Longer videos and higher resolution require more time.
Args:
duration: Video duration in seconds
height, width: Resolution
num_frames: Number of frames (indicates complexity)
Returns:
Duration in seconds for the GPU allocation
"""
base = 60
# Longer videos need more time
if duration > 4:
base += 15
if duration > 6:
base += 15
# Higher resolution needs more time
if height > 700 or width > 1000:
base += 15
# More frames means more processing
# Calculate num_frames inside get_duration since it's no longer a parameter
frames_from_duration = int(duration * DEFAULT_FRAME_RATE)
if frames_from_duration > 81:
base += 10
@spaces.GPU(duration=get_duration)
@torch.inference_mode()
def generate_video(
prompt: str,
negative_prompt: str,
input_image,
duration: float,
seed: int,
randomize_seed: bool,
height: int,
width: int,
enhance_prompt: bool,
# Guidance parameters
video_cfg_scale: float,
video_stg_scale: float,
video_rescale_scale: float,
video_a2v_scale: float,
audio_cfg_scale: float,
audio_stg_scale: float,
audio_rescale_scale: float,
audio_v2a_scale: float,
progress=gr.Progress(track_tqdm=True),
):
"""
Generate high-quality video using the Two-Stage HQ Pipeline.
This function implements a two-stage generation process:
Stage 1 (Half Resolution + CFG):
- Generates video at half the target resolution
- Uses GuidedDenoiser with CFG (positive + negative prompts)
- Applies distilled LoRA at strength 0.25
- Res2s sampler for efficient second-order denoising
Stage 2 (Upscale + Refine):
- Upscales latent representation 2x using spatial upsampler
- Refines using SimpleDenoiser (no CFG, distilled approach)
- Applies distilled LoRA at strength 0.5
- 4-step refined denoising schedule
Args:
prompt: Text description of desired video content
negative_prompt: What to avoid in the video
input_image: Optional input image for image-to-video
duration: Video duration in seconds
seed: Random seed for reproducibility
randomize_seed: Whether to use a random seed
height, width: Target resolution (must be divisible by 64)
enhance_prompt: Whether to use prompt enhancement
video_cfg_scale: Video CFG (prompt adherence)
video_stg_scale: Video STG (spatio-temporal guidance)
video_rescale_scale: Video rescaling factor
video_a2v_scale: Audio-to-video cross-attention scale
audio_cfg_scale: Audio CFG (prompt adherence)
audio_stg_scale: Audio STG (spatio-temporal guidance)
audio_rescale_scale: Audio rescaling factor
audio_v2a_scale: Video-to-audio cross-attention scale
Returns:
Tuple of (output_video_path, used_seed)
"""
try:
torch.cuda.reset_peak_memory_stats()
log_memory("start")
# Handle random seed
current_seed = random.randint(0, MAX_SEED) if randomize_seed else int(seed)
print(f"Using seed: {current_seed}")
# Validate and adjust resolution
height, width = validate_resolution(int(height), int(width))
print(f"Resolution: {width}x{height}")
# Calculate frames (must be 8*K + 1)
num_frames = calculate_frames(duration, DEFAULT_FRAME_RATE)
print(f"Frames: {num_frames} ({duration}s @ {DEFAULT_FRAME_RATE}fps)")
# Prepare image conditioning if provided
images = []
if input_image is not None:
# Save input image temporarily
output_dir = Path("outputs")
output_dir.mkdir(exist_ok=True)
temp_image_path = output_dir / f"temp_input_{current_seed}.jpg"
if hasattr(input_image, "save"):
input_image.save(temp_image_path)
else:
import shutil
shutil.copy(input_image, temp_image_path)
# Create ImageConditioningInput
# path: image file path
# frame_idx: target frame to condition on (0 = first frame)
# strength: conditioning strength (1.0 = full influence)
images = [ImageConditioningInput(
path=str(temp_image_path),
frame_idx=0,
strength=1.0
)]
# Create tiling config for VAE decoding
# Tiling is necessary to avoid OOM errors during decoding
tiling_config = TilingConfig.default()
video_chunks_number = get_video_chunks_number(num_frames, tiling_config)
# Configure MultiModalGuider parameters
# These control how the model adheres to prompts and handles modality guidance
# Video guider parameters
# cfg_scale: Classifier-free guidance scale (higher = stronger prompt adherence)
# stg_scale: Spatio-temporal guidance scale (0 = disabled)
# rescale_scale: Rescaling factor for oversaturation prevention
# modality_scale: Cross-attention scale (audio-to-video)
# skip_step: Step skipping for faster inference (0 = no skipping)
# stg_blocks: Which transformer blocks to perturb for STG
video_guider_params = MultiModalGuiderParams(
cfg_scale=video_cfg_scale,
stg_scale=video_stg_scale,
rescale_scale=video_rescale_scale,
modality_scale=video_a2v_scale,
skip_step=0,
stg_blocks=[], # Empty for LTX 2.3 HQ
)
# Audio guider parameters
audio_guider_params = MultiModalGuiderParams(
cfg_scale=audio_cfg_scale,
stg_scale=audio_stg_scale,
rescale_scale=audio_rescale_scale,
modality_scale=audio_v2a_scale,
skip_step=0,
stg_blocks=[], # Empty for LTX 2.3 HQ
)
log_memory("before pipeline call")
# Call the pipeline
# The pipeline uses Res2sDiffusionStep for second-order sampling
# Stage 1: num_inference_steps from LTX_2_3_HQ_PARAMS (15 steps)
# Stage 2: Fixed 4-step schedule from STAGE_2_DISTILLED_SIGMAS
video, audio = pipeline(
prompt=prompt,
negative_prompt=negative_prompt,
seed=current_seed,
height=height,
width=width,
num_frames=num_frames,
frame_rate=DEFAULT_FRAME_RATE,
num_inference_steps=LTX_2_3_HQ_PARAMS.num_inference_steps, # 15 steps
video_guider_params=video_guider_params,
audio_guider_params=audio_guider_params,
images=images,
tiling_config=tiling_config,
enhance_prompt=enhance_prompt,
)
log_memory("after pipeline call")
# Encode video with audio
output_path = tempfile.mktemp(suffix=".mp4")
encode_video(
video=video,
fps=DEFAULT_FRAME_RATE,
audio=audio,
output_path=output_path,
video_chunks_number=video_chunks_number,
)
log_memory("after encode_video")
return str(output_path), current_seed
except Exception as e:
import traceback
log_memory("on error")
print(f"Error: {str(e)}\n{traceback.format_exc()}")
return None, current_seed
# =============================================================================
# Gradio UI
# =============================================================================
css = """
/* Custom styling for LTX-2.3 Space */
.fillable {max-width: 1200px !important}
.progress-text {color: white}
"""
with gr.Blocks(title="LTX-2.3 Two-Stage HQ Video Generation") as demo:
gr.Markdown("# LTX-2.3 Two-Stage HQ Video Generation")
gr.Markdown(
"High-quality text/image-to-video generation using the dev model + distilled LoRA. "
"[[Model]](https://huggingface.co/Lightricks/LTX-2.3) "
"[[GitHub]](https://github.com/Lightricks/LTX-2)"
)
with gr.Row():
# Input Column
with gr.Column():
# Input image (optional)
input_image = gr.Image(
label="Input Image (Optional - for image-to-video)",
type="pil",
sources=["upload", "webcam", "clipboard"]
)
# Prompt inputs
prompt = gr.Textbox(
label="Prompt",
info="Describe the video you want to generate",
value=DEFAULT_PROMPT,
lines=3,
placeholder="Enter your prompt here..."
)
negative_prompt = gr.Textbox(
label="Negative Prompt",
info="What to avoid in the generated video",
value=DEFAULT_NEGATIVE_PROMPT,
lines=2,
placeholder="Enter negative prompt here..."
)
# Duration slider
duration = gr.Slider(
label="Duration (seconds)",
minimum=0.5,
maximum=8.0,
value=2.0,
step=0.1,
info="Video duration (clamped to 8K+1 frames)"
)
# Enhance prompt toggle
enhance_prompt = gr.Checkbox(
label="Enhance Prompt",
value=False,
info="Use Gemma to enhance the prompt for better results"
)
# Generate button
generate_btn = gr.Button("Generate Video", variant="primary", size="lg")
# Output Column
with gr.Column():
output_video = gr.Video(
label="Generated Video",
autoplay=True,
interactive=False
)
# Advanced Settings Accordion
with gr.Accordion("Advanced Settings", open=False):
with gr.Row():
# Resolution inputs
width = gr.Number(
label="Width",
value=1280,
precision=0,
info="Must be divisible by 64"
)
height = gr.Number(
label="Height",
value=704,
precision=0,
info="Must be divisible by 64"
)
with gr.Row():
# Seed controls
seed = gr.Number(
label="Seed",
value=42,
precision=0,
minimum=0,
maximum=MAX_SEED
)
randomize_seed = gr.Checkbox(
label="Randomize Seed",
value=True
)
gr.Markdown("### Video Guidance Parameters")
gr.Markdown("Control how strongly the model follows the video prompt and handles guidance.")
with gr.Row():
video_cfg_scale = gr.Slider(
label="Video CFG Scale",
minimum=1.0,
maximum=10.0,
value=LTX_2_3_HQ_PARAMS.video_guider_params.cfg_scale,
step=0.1,
info="Classifier-free guidance for video (higher = stronger prompt adherence)"
)
video_stg_scale = gr.Slider(
label="Video STG Scale",
minimum=0.0,
maximum=2.0,
value=0.0,
step=0.1,
info="Spatio-temporal guidance (0 = disabled)"
)
with gr.Row():
video_rescale_scale = gr.Slider(
label="Video Rescale",
minimum=0.0,
maximum=2.0,
value=0.45,
step=0.1,
info="Rescaling factor for oversaturation prevention"
)
video_a2v_scale = gr.Slider(
label="A2V Scale",
minimum=0.0,
maximum=5.0,
value=3.0,
step=0.1,
info="Audio-to-video cross-attention scale"
)
gr.Markdown("### Audio Guidance Parameters")
gr.Markdown("Control audio generation quality and sync.")
with gr.Row():
audio_cfg_scale = gr.Slider(
label="Audio CFG Scale",
minimum=1.0,
maximum=15.0,
value=LTX_2_3_HQ_PARAMS.audio_guider_params.cfg_scale,
step=0.1,
info="Classifier-free guidance for audio"
)
audio_stg_scale = gr.Slider(
label="Audio STG Scale",
minimum=0.0,
maximum=2.0,
value=0.0,
step=0.1,
info="Spatio-temporal guidance for audio (0 = disabled)"
)
with gr.Row():
audio_rescale_scale = gr.Slider(
label="Audio Rescale",
minimum=0.0,
maximum=2.0,
value=1.0,
step=0.1,
info="Audio rescaling factor"
)
audio_v2a_scale = gr.Slider(
label="V2A Scale",
minimum=0.0,
maximum=5.0,
value=3.0,
step=0.1,
info="Video-to-audio cross-attention scale"
)
# Event handlers
def on_image_upload(image, current_h, current_w):
"""Update resolution based on uploaded image aspect ratio."""
if image is None:
return gr.update(), gr.update()
aspect = detect_aspect_ratio(image)
if aspect in RESOLUTIONS:
return (
gr.update(value=RESOLUTIONS[aspect]["width"]),
gr.update(value=RESOLUTIONS[aspect]["height"])
)
return gr.update(), gr.update()
input_image.change(
fn=on_image_upload,
inputs=[input_image, height, width],
outputs=[width, height],
)
# Generate button click handler
generate_btn.click(
fn=generate_video,
inputs=[
prompt,
negative_prompt,
input_image,
duration,
seed,
randomize_seed,
height,
width,
enhance_prompt,
video_cfg_scale,
video_stg_scale,
video_rescale_scale,
video_a2v_scale,
audio_cfg_scale,
audio_stg_scale,
audio_rescale_scale,
audio_v2a_scale,
],
outputs=[output_video, seed],
)
# =============================================================================
# Main Entry Point
# =============================================================================
if __name__ == "__main__":
demo.queue().launch(
theme=gr.themes.Citrus(),
css=css,
mcp_server=True,
share=True,
) |