← All models

Alibaba: Happy Horse 1.1
alibaba/happyhorse-1.1video
Alibaba video model: text- and frame-to-video with reference images. Great for dynamic scenes.
Pricing
per clip · 3s
Parameters
promptrequiredseconds · · · · · · · · · · · · size · · · · · · · · · · · · · input_references2–9 imagesHow to use via API
import timefrom openai import OpenAIclient = OpenAI(base_url="https://api.mixen.ai/v1", api_key="mxn-...")video = client.videos.create(model="alibaba/happyhorse-1.1",prompt="Кот-космонавт на мотоцикле, ночь",seconds="3",size="720x720",# input_references=[...] # 2–9 референс-картинок)while video.status not in ("completed", "failed"):time.sleep(5)video = client.videos.retrieve(video.id)client.videos.download_content(video.id).write_to_file("video.mp4")
