Spaces:
Running on Zero
Running on Zero
docs: README with Spaces front matter and local quickstart
Browse files
README.md
CHANGED
|
@@ -1 +1,52 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: LTX 2.3 All-in-One Video Generator
|
| 3 |
+
emoji: 🎬
|
| 4 |
+
colorFrom: purple
|
| 5 |
+
colorTo: blue
|
| 6 |
+
sdk: gradio
|
| 7 |
+
sdk_version: "5.0"
|
| 8 |
+
app_file: app.py
|
| 9 |
+
python_version: "3.11"
|
| 10 |
+
suggested_hardware: zero-gpu
|
| 11 |
+
hf_oauth: false
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# LTX 2.3 All-in-One Video Generator
|
| 15 |
+
|
| 16 |
+
A Gradio app for [LTX-2.3](https://huggingface.co/Lightricks/LTX-2.3) wrapping all six modes of the official ComfyUI All-In-One workflow under a single, focused UI. Runs locally on Apple Silicon (MPS) or NVIDIA (CUDA), and deploys to Hugging Face Spaces (ZeroGPU).
|
| 17 |
+
|
| 18 |
+
## Modes
|
| 19 |
+
|
| 20 |
+
1. **Text → Video** (+ optional Audio)
|
| 21 |
+
2. **Audio → Video** (Text + Audio → Video + Audio)
|
| 22 |
+
3. **Image → Video** (+ optional Audio)
|
| 23 |
+
4. **Lipsync** (Image + Audio → Video + Audio)
|
| 24 |
+
5. **First / Last Frame → Video** (keyframe interpolation)
|
| 25 |
+
6. **Style Transfer** (Video → Video, motion control)
|
| 26 |
+
|
| 27 |
+
## Local quickstart
|
| 28 |
+
|
| 29 |
+
Requires Python 3.11, ~80 GB free disk for model weights, and ~24 GB+ GPU memory (CUDA) or 32 GB+ unified memory (Apple Silicon).
|
| 30 |
+
|
| 31 |
+
```bash
|
| 32 |
+
git clone --recurse-submodules https://github.com/<your-handle>/ltx2.3-AIO-generator
|
| 33 |
+
cd ltx2.3-AIO-generator
|
| 34 |
+
bash setup.sh
|
| 35 |
+
source .venv/bin/activate
|
| 36 |
+
python app.py
|
| 37 |
+
```
|
| 38 |
+
|
| 39 |
+
The first run downloads ~70 GB of models into your existing `~/.cache/huggingface/hub` (no duplicate copies in this repo) and symlinks them into `comfyui/models/`.
|
| 40 |
+
|
| 41 |
+
## HF Spaces deployment
|
| 42 |
+
|
| 43 |
+
This repo is a Gradio Space. The required Pro tier provides ~50 GB persistent `/data` storage and longer per-call ZeroGPU budgets needed for Balanced and Quality presets.
|
| 44 |
+
|
| 45 |
+
```bash
|
| 46 |
+
git remote add space https://huggingface.co/spaces/<your-handle>/ltx2.3-aio
|
| 47 |
+
git push space main
|
| 48 |
+
```
|
| 49 |
+
|
| 50 |
+
## License
|
| 51 |
+
|
| 52 |
+
MIT for the AIO app code. ComfyUI and LTX-2.3 retain their respective licenses.
|