LTX-Video
448
—
by
qhillerich
Other
OTHER
New
448 downloads
Early-stage
Edge AI:
Mobile
Laptop
Server
Unknown
Mobile
Laptop
Server
Quick Summary
AI model with specialized capabilities.
Code Examples
Endpoint URLtext
https://<your-endpoint>.aws.endpoints.huggingface.cloudusage Examples (curl)bash
curl -sS -X POST "https://<ENDPOINT>.aws.endpoints.huggingface.cloud" \
-H "Authorization: Bearer <TOKEN>" \
-H "Content-Type: application/json" \
-d '{
"inputs": {
"prompt": "a cyberpunk street in rain, neon lights",
"num_frames": 24,
"outputs": ["gif"]
}
}' \
| jq -er '.outputs.gif_base64' | base64 --decode > output.gif2. Image-to-Video (GIF)bash
# MacOS/Linux: Convert image to base64
IMG_B64=$(base64 -i my_input.jpg)
curl -sS -X POST "https://<ENDPOINT>.aws.endpoints.huggingface.cloud" \
-H "Authorization: Bearer <TOKEN>" \
-H "Content-Type: application/json" \
-d "{
\"inputs\": {
\"prompt\": \"waves crashing on the shore, moving water\",
\"image\": \"$IMG_B64\",
\"num_frames\": 32,
\"outputs\": [\"gif\"]
}
}" \
| jq -er '.outputs.gif_base64' | base64 --decode > animated.gifDeploy This Model
Production-ready deployment in minutes
Together.ai
Instant API access to this model
Production-ready inference API. Start free, scale to millions.
Try Free APIReplicate
One-click model deployment
Run models in the cloud with simple API. No DevOps required.
Deploy NowDisclosure: We may earn a commission from these partners. This helps keep LLMYourWay free.