Seedance 2.5
from $0.15/s
- 480p — $0.15/s
- 720p — $0.35/s
- 1080p — $0.80/s
Seedance 2.5 API / さらに詳しい話。より多くのコントロール。
Seedance 2.5 または Seedance 2.5 を使用して、リファレンスガイド付き AI ビデオを作成します。 制限が少なく、最大 1080p 出力、およびオプションの画像、ビデオ、またはオーディオ入力。
Pay-as-you-go access through PiAPI.
from $0.15/s
from $0.165/s
顔リファレンスは、-less-restriction モードで使用する前にアセット ライブラリにアップロードして検証する必要があります。 アセット ライブラリのドキュメントの表示 →
Seedance 2.5 は、実証済みの Seedance リクエスト形式を維持しながら、明確なモデル、解像度、期間、参照、および価格契約を定義します。
5、8、10、15、20、を生成25、または 30 秒クリップ (デフォルトは 5 秒)。
480p、720p、または 1080p で生成します。従来のページには、480p および 720p がリストされていました。 PiAPI は、1080p 生成もサポートするようになりました。
標準ワークフローには seedance-2.5 を使用します。 seedance-2.5-less-restriction タスク タイプは、プライベート アセット ライブラリのレビューに合格した後の顔アセットを使用した生成をサポートします。
画像、ビデオ、オーディオのリファレンスを使用して結果を導きます。参照画像のアスペクト比は、要求されたアスペクト比よりも優先されます。
@image1、@video1、および @audio1 プレースホルダーを使用して、プロンプト内で提供されたメディアを直接参照します。
プレイグラウンドでライブ Seedance 2.5 タスクをテストし、同じモデル、タスク タイプ、プロンプト、参照コントラクトをアプリケーションで再利用します。
21:9、16:9、9:16、4:3、で作成します。 1:1、または 3:4。画像参照が指定されると、そのアスペクト比が優先されます。
出力期間は、選択した解像度レートで請求されます。ビデオ参照が使用される場合、入力ビデオの長さはその料金の半分で請求されます。
プロンプトと参照を準備し、モデル seedance と Seedance タスク タイプ 2.5 で生成し、テストされたリクエストをアプリケーションに組み込みます。
Sign up and grab an API key from the PiAPI workspace — free credits are included on sign-up.
Add credits on the billing page when you are ready to scale beyond the free tier.
POST your first task following the API docs, then poll the task until the result is ready.
Prototype prompts and settings in the the playground above before wiring them into your product.
curl -X POST 'https://api.piapi.ai/api/v1/task' \
-H 'X-API-Key: YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"model": "seedance",
"task_type": "seedance-2.5",
"input": {
"prompt": "A cinematic tracking shot through a neon-lit city street after rain.",
"duration": 4,
"resolution": "720p",
"aspect_ratio": "16:9",
"mode": "text_to_video"
}
}'curl 'https://api.piapi.ai/api/v1/task/{task_id}' \
-H 'X-API-Key: YOUR_API_KEY'video_url / video
curl -X POST 'https://api.piapi.ai/api/v1/task' \
-H 'X-API-Key: YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"model": "seedance",
"task_type": "seedance-2.5",
"input": {
"prompt": "A cinematic tracking shot through a neon-lit city street after rain.",
"duration": 4,
"resolution": "720p",
"aspect_ratio": "16:9",
"mode": "first_last_frames",
"image_urls": [
"YOUR_IMAGE_URL"
]
}
}'curl 'https://api.piapi.ai/api/v1/task/{task_id}' \
-H 'X-API-Key: YOUR_API_KEY'video_url / video
curl -X POST 'https://api.piapi.ai/api/v1/task' \
-H 'X-API-Key: YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"model": "seedance",
"task_type": "seedance-2.5",
"input": {
"prompt": "A cinematic tracking shot through a neon-lit city street after rain.",
"duration": 4,
"resolution": "720p",
"aspect_ratio": "16:9",
"mode": "omni_reference",
"image_urls": [
"YOUR_IMAGE_URL"
],
"video_urls": [
"YOUR_VIDEO_URL"
],
"audio_urls": [
"YOUR_AUDIO_URL"
]
}
}'curl 'https://api.piapi.ai/api/v1/task/{task_id}' \
-H 'X-API-Key: YOUR_API_KEY'video_url / video
curl -X POST 'https://api.piapi.ai/api/v1/task' \
-H 'X-API-Key: YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"model": "seedance",
"task_type": "seedance-2.5-less-restriction",
"input": {
"prompt": "A cinematic tracking shot through a neon-lit city street after rain.",
"duration": 4,
"resolution": "720p",
"aspect_ratio": "16:9",
"mode": "text_to_video"
}
}'curl 'https://api.piapi.ai/api/v1/task/{task_id}' \
-H 'X-API-Key: YOUR_API_KEY'video_url / video
curl -X POST 'https://api.piapi.ai/api/v1/task' \
-H 'X-API-Key: YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"model": "seedance",
"task_type": "seedance-2.5-less-restriction",
"input": {
"prompt": "A cinematic tracking shot through a neon-lit city street after rain.",
"duration": 4,
"resolution": "720p",
"aspect_ratio": "16:9",
"mode": "first_last_frames",
"image_urls": [
"YOUR_IMAGE_URL"
]
}
}'curl 'https://api.piapi.ai/api/v1/task/{task_id}' \
-H 'X-API-Key: YOUR_API_KEY'video_url / video
curl -X POST 'https://api.piapi.ai/api/v1/task' \
-H 'X-API-Key: YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"model": "seedance",
"task_type": "seedance-2.5-less-restriction",
"input": {
"prompt": "A cinematic tracking shot through a neon-lit city street after rain.",
"duration": 4,
"resolution": "720p",
"aspect_ratio": "16:9",
"mode": "omni_reference",
"image_urls": [
"YOUR_IMAGE_URL"
],
"video_urls": [
"YOUR_VIDEO_URL"
],
"audio_urls": [
"YOUR_AUDIO_URL"
]
}
}'curl 'https://api.piapi.ai/api/v1/task/{task_id}' \
-H 'X-API-Key: YOUR_API_KEY'video_url / video
Seedance 2.5 は、PiAPI の Seedance AI ビデオ タスクです。 task_type seedance-2.5 または seedance-2.5 制限なしのモデル seedance を使用して、プロンプトからビデオを生成します。オプションで、画像、ビデオ、またはオーディオ参照によってガイドされます。 [seedance-2.5-less-restriction]
はい。 Seedance 2.5 プレイグラウンドはこのページで公開されており、標準または制限の少ないタスク タイプを選択できます。
API は、4 秒から 30 秒までの整数の期間を受け入れ、480p、720p、および 1080p 出力をサポートします。
プレイグラウンドでサポートされている画像、ビデオ、およびオーディオの参照を提供できます。プロンプトで @imageN、@videoN、および @audioN プレースホルダーを使用します。
Seedance 2.5 は、選択した解決策とタスク タイプに基づいた料金で、生成された秒ごとに請求されます。現在の動的に取得される料金については、上記の料金セクションを参照してください。
はい。モデル seedance および Seedance 2.5 タスク タイプで PiAPI タスクを作成し、プロンプト、期間、解像度、アスペクト比、およびサポートされている参照 URL を指定します。
Seedance 2.5 には、専用の標準および制限の少ないタスク タイプがあり、最大 1080p 出力をサポートし、マルチモーダル参照を受け入れます。 Seedance 2.0 は、既存のワークフローおよび独自のモデル バリアントで引き続き使用できます。
Seedance 2.5 制限が緩和され、プライベート アセット ライブラリのレビューに合格した顔アセットでの生成がサポートされます。顔アセットをアップロードし、ステータスがアクティブになるまで待ってから、リクエストで検証済みのアセットを参照します。
More questions? See the API docs.
Seedance 2.5 API