Jimeng

Seedance 2.0

Video Generation
bytedance/seedance-2.0

Seedance 2.0 は、ByteDance の次世代マルチモーダルクリエイティブ動画モデルで、最大 9 枚の画像、3 本の動画、3 つの音声クリップとテキストの混合入力に対応しています。480p または 720p の解像度で 4〜15 秒のクリップを生成し、精密なモーション制御と音声の同期に対応しています。OpenAI-compatible プロトコル経由でアクセス可能です。

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

料金

$0.07/秒〜
解像度モード音声秒あたりの価格
480pテキストから動画すべて$0.07/秒
480p動画から動画すべて$0.09/秒
720pテキストから動画すべて$0.16/秒
720p動画から動画すべて$0.2/秒
1080pテキストから動画すべて$0.34/秒
1080p動画から動画すべて$0.45/秒
4kテキストから動画すべて$1.37/秒
4k動画から動画すべて$1.7/秒
その他すべての組み合わせ$1.7/秒

生成した動画の秒数に応じて課金されます。対応するパラメータの組み合わせと価格は 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",
"prompt": "A golden retriever running on the beach at sunset",
"duration": 4,
"resolution": "1080p",
"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 は、生成した動画 1 秒あたり $0.07〜 で利用できます。実際の料金は解像度・生成モード・音声によって異なります。従量課金制で、月額料金はかかりません。