Sora2
OpenAIの映像生成モデルSora 2
機能
- テキストから動画生成
- 画像から動画へのアニメーション
- 複数の期間
- オプションの透かし除去
料金設定
| Duration | Watermark | No Watermark |
|---|---|---|
| 10 frames | 8 (~$0.09) | 10 (~$0.11) |
| 15 frames | 10 (~$0.11) | 12 (~$0.13) |
Sora2 standard version
Sora2-pro version
| Duration | Standard | High |
|---|---|---|
| 10 frames | 125 (~$1.39) | 275 (~$3.06) |
| 15 frames | 225 (~$2.50) | 475 (~$5.28) |
エンドポイント
POST
/api/v1/videos/generateパラメータ
| パラメータ | タイプ | 必須 | 説明 |
|---|---|---|---|
| model | string | 必須 | "sora2" or "sora2-pro" |
| type | string | オプション | "text-to-video" or "image-to-video" |
| prompt | string | 必須 | Text description of the video |
| n_frames | string | オプション | "10" or "15" |
| remove_watermark | boolean | オプション | Remove watermark (sora2 only) |
| size | string | オプション | "standard" or "high" (sora2-pro only) |
| aspect_ratio | string | オプション | "landscape", "portrait", or "square" |
| input_image | string | オプション | URL for image-to-video |
リクエストの例
{
"model": "sora2",
"type": "text-to-video",
"prompt": "A cat walking on the beach",
"n_frames": "10",
"remove_watermark": true,
"aspect_ratio": "landscape"
}レスポンス例
{
"success": true,
"data": {
"task_id": "task_sora123",
"credits_used": 10,
"remaining_credits": 490,
"model": "sora2"
}
}コード例
curl -X POST https://gateway.nanobananapro.site/api/v1/videos/generate \
-H "Authorization: Bearer sk-your-api-key" \
-H "Content-Type: application/json" \
-d '{
"model": "sora2",
"type": "text-to-video",
"prompt": "A cat walking on the beach",
"n_frames": "10",
"remove_watermark": true
}'