- Organizations
- Tencent
- Hunyuan Video
Hunyuan Video: Benchmarks, Pricing & Context Window
Hunyuan Video is a video generation model from Tencent, released in December 2024.
Tencent Hunyuan Video is an open video generation model with text-to-video and image-to-video support, strong visual quality, motion diversity, prompt alignment, and generation stability.
Hunyuan Video benchmarks
Video Arena Performance
Performance by category and language
Where Hunyuan Video is strongest across prompt themes and languages. Conservative TrueSkill score (μ − 3σ), only axes with 3+ votes.
Leaderboard Rankings
Quality Tracker
Similar Models
How Hunyuan Video compares to its closest neighbors on each video arena it competes in.
Community Benchmarks
How Hunyuan Video ranks in community-created evaluations.
Hunyuan Video API
Image-to-video: use this frame as the first frame.
Awaiting first request
Press ⌘↵ to send
Use it in your code
OpenAI-compatible endpoint through the LLM Stats gateway.
import requests
# Create the generation. wait="auto" long-polls (up to 60s) so most short
# jobs return as "completed" in a single round-trip.
res = requests.post(
"https://gateway.llm-stats.com/v1/generations",
headers={"Authorization": "Bearer YOUR_API_KEY"},
json={
"model": "hunyuan-video",
"input": {"prompt": "A timelapse of clouds moving across the sky"},
"wait": "auto",
},
)
job = res.json()
# If it didn't finish inside the wait window, poll the same resource.
while job["status"] in ("queued", "running"):
res = requests.get(
f"https://gateway.llm-stats.com/v1/generations/{job['id']}",
params={"wait": 60},
headers={"Authorization": "Bearer YOUR_API_KEY"},
)
job = res.json()
if job["status"] == "completed":
print("video:", job["output"]["media"][0]["url"])
else:
print("Failed:", job["error"]["message"])Need an API key? Create one above in the playground, or read the API documentation.
Hunyuan Video examples
Recent arena outputs from Hunyuan Video, picked from the highest-ranked matchups.
Hunyuan Video license
Hunyuan Video is released under the Tencent Hunyuan Community License Agreement license, which restricts commercial use.
- License
- Tencent Hunyuan Community License Agreement
- Non-commercial
FAQ
Common questions about Hunyuan Video.