All models

Happy Horse 1.1

video

Alibaba video model: text- and frame-to-video with reference images. Great for dynamic scenes.

Pricing

0.15 $
Second

Price uses the live FX rate — shown equals charged.

Parameters

promptrequired
seconds3 · 4 · 5 · 6 · 7 · 8 · 9 · 10 · 11 · 12 · 13 · 14 · 15
size1080x1080 · 1080x1440 · 1080x1920 · 1080x2520 · 1280x720 · 1440x1080 · 1680x720 · 1920x1080 · 2520x1080 · 720x1280 · 720x1680 · 720x720 · 720x960 · 960x720
input_references2–9 images

How to use via API

import time
from openai import OpenAI
client = OpenAI(base_url="https://api.mixen.ai/v1", api_key="mxn-...")
video = client.videos.create(
model="happyhorse-1.1",
prompt="Кот-космонавт на мотоцикле, ночь",
seconds="3",
size="1080x1080",
# 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")