Jimeng

Seedance 2.0 Mini

Video Generation
bytedance/seedance-2.0-mini

Seedance 2.0 Mini は、ByteDance の軽量動画生成モデルで、低コストかつ高速な動画合成を目的として設計されています。テキストから動画および画像から動画への変換に対応し、競争力のある出力品質を維持しながら、プレビュー、検証、大規模なコスト効率の高い生成に最適です。OpenAI-compatible プロトコル経由でアクセス可能です。

長さ
4-15s
音声
対応
リリース日
2026-06-15
生成モード
t2vテキストから動画i2v画像から動画v2v動画から動画
解像度
480p720p
アスペクト比
16:99:161:1adaptive
機能
動画入力
利用可能なプロバイダー
ByteDanceBytePlusVolcengineVolcengine
対応プロトコル
OpenAIopenai

料金

$0.04/秒〜
解像度モード音声秒あたりの価格
480pテキストから動画すべて$0.04/秒
480p動画から動画すべて$0.05/秒
720pテキストから動画すべて$0.08/秒
720p動画から動画すべて$0.1/秒
その他すべての組み合わせ$0.1/秒

生成した動画の秒数に応じて課金されます。対応するパラメータの組み合わせと価格は API のリアルタイムの応答に準じ、モデルのバージョンによって変わる場合があります。

コード例

import time
import requests
BASE = "https://api.ofox.run/v1/videos"
HEADERS = {"Authorization": "Bearer YOUR_OFOX_API_KEY"}
# Create the generation task
task = requests.post(BASE, headers=HEADERS, json={
"model": "bytedance/seedance-2.0-mini",
"prompt": "A golden retriever running on the beach at sunset",
"duration": 4,
"resolution": "720p",
"generate_audio": True,
}).json()
# Poll until the task reaches a terminal state
while True:
task = requests.get(f"{BASE}/{task['id']}", headers=HEADERS).json()
if task["status"] in ("completed", "failed", "cancelled", "expired"):
break
time.sleep(10)
# Prefer mirror_urls (persistent) then fall back to unsigned_urls (24h)
print((task.get("mirror_urls") or task.get("unsigned_urls") or [None])[0])

よくある質問

Ofox.ai の Seedance 2.0 Mini は、生成した動画 1 秒あたり $0.04〜 で利用できます。実際の料金は解像度・生成モード・音声によって異なります。従量課金制で、月額料金はかかりません。