Instructions to use Lightricks/LTX-Video with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Lightricks/LTX-Video with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline from diffusers.utils import load_image, export_to_video # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Lightricks/LTX-Video", dtype=torch.bfloat16, device_map="cuda") pipe.to("cuda") prompt = "A man with short gray hair plays a red electric guitar." image = load_image( "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/guitar-man.png" ) output = pipe(image=image, prompt=prompt).frames[0] export_to_video(output, "output.mp4") - Notebooks
- Google Colab
- Kaggle
Explicit `text-to-video` pipeline tag and `diffusers` library
#72
by Wauplin HF Staff - opened
README.md
CHANGED
|
@@ -1,12 +1,13 @@
|
|
| 1 |
---
|
| 2 |
tags:
|
| 3 |
- ltx-video
|
| 4 |
-
- text-to-video
|
| 5 |
- image-to-video
|
| 6 |
pinned: true
|
| 7 |
language:
|
| 8 |
- en
|
| 9 |
license: other
|
|
|
|
|
|
|
| 10 |
---
|
| 11 |
|
| 12 |
# LTX-Video Model Card
|
|
|
|
| 1 |
---
|
| 2 |
tags:
|
| 3 |
- ltx-video
|
|
|
|
| 4 |
- image-to-video
|
| 5 |
pinned: true
|
| 6 |
language:
|
| 7 |
- en
|
| 8 |
license: other
|
| 9 |
+
pipeline_tag: text-to-video
|
| 10 |
+
library_name: diffusers
|
| 11 |
---
|
| 12 |
|
| 13 |
# LTX-Video Model Card
|