Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
Open-source 15B parameter AI model for joint video and synchronized audio generation.
Happy Horse 1.0 is an open-source AI video generation model developed by the Happy Horse team. It is a 15-billion-parameter unified Transformer that jointly generates video and synchronized audio from text or image prompts, offering cinematic 1080p quality and multilingual lip-sync.
git clone https://github.com/happy-horse/happyhorse-1.gitcd happyhorse-1pip install -r requirements.txtbash download_weights.shpython demo_generate.py --prompt "a robot dancing on the moon" --duration 5
Alternatively, use the Python API:from happyhorse import HappyHorseModel
model = HappyHorseModel.from_pretrained("happy-horse/happyhorse-1.0")
video, audio = model.generate(
prompt="an elder on a mountain peak overlooking the valley",
duration_seconds=5,
fps=24,
language="en",
)
video.save("output.mp4")
audio.save("output.wav")What is Happy Horse 1.0? Happy Horse 1.0 is a 15B-parameter open-source AI video generation model that jointly produces video and synchronized audio from text or image prompts.
Is Happy Horse free for commercial use? Yes. Happy Horse is released as open source with commercial-use rights, including the base model, distilled model, super-resolution module, and inference code.
What hardware do I need to run Happy Horse? An NVIDIA H100 or A100 GPU with at least 48GB VRAM is recommended. A 5-second 1080p clip generates in roughly 38 seconds on H100.
Which languages does Happy Horse support for lip-sync? Seven languages: English, Mandarin, Cantonese, Japanese, Korean, German, and French — with industry-leading low Word Error Rate.
How does Happy Horse compare to OVI and LTX? Happy Horse 1.0 outperforms OVI 1.1 (80.0% win rate) and LTX 2.3 (60.9% win rate) across visual quality, prompt alignment, and Word Error Rate.