Cydercoder commited on
Commit
635c454
·
verified ·
1 Parent(s): e11dd05

Upload 2 files

Browse files
Files changed (2) hide show
  1. README.md +5 -1
  2. app.py +2 -2
README.md CHANGED
@@ -89,7 +89,11 @@ Aug 2026. Free accounts can host up to 2 ZeroGPU Spaces.)
89
  ### Prompting tips (motion graphics)
90
  - Describe the scene **and** the motion: *"glossy chrome sphere rotating slowly,
91
  volumetric lighting, dark studio"*.
92
- - Keep clips short (~5s, 121 frames) LTX-Video shines at short, single-shot clips.
 
 
 
 
93
  - More inference steps (40–50) = better quality but slower and more quota.
94
  - Reuse a **seed** to reproduce a video and iterate on it.
95
 
 
89
  ### Prompting tips (motion graphics)
90
  - Describe the scene **and** the motion: *"glossy chrome sphere rotating slowly,
91
  volumetric lighting, dark studio"*.
92
+ - Clip length: the model's max is **~10s** (257 frames). Drag the **Frames**
93
+ slider up for longer clips (more frames = more GPU quota per clip).
94
+ - Need a *longer* video? Generate several short clips with matching prompts
95
+ (reuse the **seed** for visual consistency) and stitch them with any free
96
+ video editor — far more reliable than forcing one long generation.
97
  - More inference steps (40–50) = better quality but slower and more quota.
98
  - Reuse a **seed** to reproduce a video and iterate on it.
99
 
app.py CHANGED
@@ -196,10 +196,10 @@ Your own video generation AI, running 100% in the cloud on Hugging Face GPUs
196
  with gr.Accordion("Settings", open=False):
197
  num_frames = gr.Slider(
198
  minimum=49,
199
- maximum=241,
200
  value=121,
201
  step=8,
202
- label="Frames (121 ≈ 5 seconds)",
203
  )
204
  resolution = gr.Dropdown(
205
  list(RESOLUTIONS.keys()),
 
196
  with gr.Accordion("Settings", open=False):
197
  num_frames = gr.Slider(
198
  minimum=49,
199
+ maximum=257,
200
  value=121,
201
  step=8,
202
+ label="Frames (121 ≈ 5s, up to 257 ≈ 10s)",
203
  )
204
  resolution = gr.Dropdown(
205
  list(RESOLUTIONS.keys()),