Все модели

ByteDance: Seedance 2.0 Mini

bytedance/seedance-2.0-mini
видео

Seedance 2.0 Mini от ByteDance — бюджетная видео-модель: text-to-video, image-to-video с первым и последним кадром, multimodal-референсы, нативное аудио.

Цена

за ролик · 4 с

Параметры

promptобязательный
seconds · · · · · · · · · · ·
size · · · · · · · · · · · · ·
input_references2–9 картинок

Как использовать через API

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