Skip to content

🎬 ビデオモデル runwayML gen3a_turbo gen4_turbo

  • 2025.08.21 このサイトは公式Runwayビデオモデル gen4_aleph に対応しました
  • 2025.04.22 このサイトは公式Runwayビデオモデル gen4_turbo に対応しました
  • 2024.11.16 このサイトは公式Runwayビデオモデル gen3a_turbo に対応しました
  • image-to-video に対応
  • 料金:生成ごと — 時間オプションは 5s10s10s5s の2倍の価格
  • 使用方法:https://runway.ddaiai.com にアクセスし、以下の「オンラインテスト」セクションを参照してください
  • 公式ドキュメント:https://docs.dev.runwayml.com/api/

オンラインテスト 1. https://runway.ddaiai.com にアクセス(ブロックされている場合は、サブドメインプレフィックスを suibian に変更してみてください)


2. ブロックされている場合は、アドレスを自分で変更できます — https://suibian.ddaiai.comsuibian を他のものに置き換えてください。例:https://2025.ddaiai.com — すべてのバリアントが機能します

オンラインテスト

設定

Runway

結果

結果 Runway

Runway API

ビデオタスクの作成

post https://api.openai-hk.com/runwayml/v1/image_to_video

curl

shell
curl --request POST \
  --url https://api.openai-hk.com/runwayml/v1/image_to_video \
  --header 'Authorization: Bearer hk-your-key' \
  --header 'Content-Type: application/json' \
  --data '{
    "promptImage": [
        {"uri":"https://www.openai-hk.com/res/img/open.png","position":"first"},
        {"uri":"https://www.openai-hk.com/res/img/open.png","position":"last"}
    ],
    "seed": 4294967295,
    "model": "gen4_turbo",
    "promptText": "wave",
    "watermark": false,
    "duration": 5,
    "ratio": "960:960"
  }'
curl --request POST \
  --url https://api.openai-hk.com/runwayml/v1/image_to_video \
  --header 'Authorization: Bearer hk-your-key' \
  --header 'Content-Type: application/json' \
  --data '{
    "promptImage": [
        {"uri":"https://www.openai-hk.com/res/img/open.png","position":"first"},
        {"uri":"https://www.openai-hk.com/res/img/open.png","position":"last"}
    ],
    "seed": 4294967295,
    "model": "gen4_turbo",
    "promptText": "wave",
    "watermark": false,
    "duration": 5,
    "ratio": "960:960"
  }'

リクエストボディ

json
{
  "promptImage": [
    {
      "uri": "https://www.openai-hk.com/res/img/open.png",
      "position": "first"
    },
    { "uri": "https://www.openai-hk.com/res/img/open.png", "position": "last" }
  ],
  "seed": 4294967295,
  "model": "gen4_turbo",
  "promptText": "wave",
  "watermark": false,
  "duration": 5,
  "ratio": "1280:768"
}
{
  "promptImage": [
    {
      "uri": "https://www.openai-hk.com/res/img/open.png",
      "position": "first"
    },
    { "uri": "https://www.openai-hk.com/res/img/open.png", "position": "last" }
  ],
  "seed": 4294967295,
  "model": "gen4_turbo",
  "promptText": "wave",
  "watermark": false,
  "duration": 5,
  "ratio": "1280:768"
}

主要フィールドの説明

フィールドタイプ説明
promptImageobject[]最初と最後のフレームの参照画像
promptImage[0].uristring画像URLまたはbase64
promptImage[0].positionstringフレーム位置:first は最初のフレーム、last は最後のフレーム
durationint時間:5または10
seedintシード
ratiostringgen3a_turbo1280:768(横長)と 768:1280(縦長)のみ対応、gen4_turbo1280:720 720:1280 1104:832 832:1104 960:960 1584:672 に対応
modelstring対応モデル:gen3a_turbo gen4_turbo
notify_hookstringコールバックURL — オプション

レスポンスボディ

json
{
  "id": "c7f2b640-9adb-4565-8e99-f759cacef00c"
}
{
  "id": "c7f2b640-9adb-4565-8e99-f759cacef00c"
}

返された task.id がタスククエリに使用される TaskID です。

タスククエリ

get https://api.openai-hk.com/runwayml/v1/tasks/{TaskID}

shell
curl --request GET \
  --url https://api.openai-hk.com/runwayml/v1/tasks/c7f2b640-9adb-4565-8e99-f759cacef00c \
  --header 'Authorization: Bearer hk-your-key' \
  --header 'Content-Type: application/json' \
curl --request GET \
  --url https://api.openai-hk.com/runwayml/v1/tasks/c7f2b640-9adb-4565-8e99-f759cacef00c \
  --header 'Authorization: Bearer hk-your-key' \
  --header 'Content-Type: application/json' \

レスポンスボディ — 成功

json
{
  "id": "c7f2b640-9adb-4565-8e99-f759cacef00c",
  "output": [
    "https://dnznrvs05pmza.cloudfront.net/94a66520-1a1b-43c3-a684-676b3f7dabae.mp4?_jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJrZXlIYXNoIjoiMDdmYzk5YjQxNmFlZTdiYSIsImJ1Y2tldCI6InJ1bndheS10YXNrLWFydGlmYWN0cyIsInN0YWdlIjoicHJvZCIsImV4cCI6MTczMTgwMTYwMH0.BbJr86wkWwEjngHBwQutQV-4BgQjG1jdQsMLS4eAxN0"
  ],
  "status": "SUCCEEDED",
  "createdAt": "2024-11-15T13:54:50.800Z"
}
{
  "id": "c7f2b640-9adb-4565-8e99-f759cacef00c",
  "output": [
    "https://dnznrvs05pmza.cloudfront.net/94a66520-1a1b-43c3-a684-676b3f7dabae.mp4?_jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJrZXlIYXNoIjoiMDdmYzk5YjQxNmFlZTdiYSIsImJ1Y2tldCI6InJ1bndheS10YXNrLWFydGlmYWN0cyIsInN0YWdlIjoicHJvZCIsImV4cCI6MTczMTgwMTYwMH0.BbJr86wkWwEjngHBwQutQV-4BgQjG1jdQsMLS4eAxN0"
  ],
  "status": "SUCCEEDED",
  "createdAt": "2024-11-15T13:54:50.800Z"
}

レスポンスボディ — 失敗

json
{
  "id": "87f8a40c-2bf2-4a58-9fdc-486ed7c7244d",
  "status": "FAILED",
  "failure": "Text prompt did not pass moderation",
  "createdAt": "2024-11-15T16:06:41.521Z",
  "failureCode": "INPUT_PREPROCESSING.SAFETY.TEXT"
}
{
  "id": "87f8a40c-2bf2-4a58-9fdc-486ed7c7244d",
  "status": "FAILED",
  "failure": "Text prompt did not pass moderation",
  "createdAt": "2024-11-15T16:06:41.521Z",
  "failureCode": "INPUT_PREPROCESSING.SAFETY.TEXT"
}

video to video

  • Runway Gen4 Alephは、マルチタスク視覚生成の新しいフロンティアを切り開く高度なコンテキストビデオモデルです。オブジェクトの追加、削除、変換、シーンの任意の角度の生成、スタイルや照明の変更など、入力ビデオに対して広範な編集を行うことができます。
  • 価格:生成あたり20,000クレジット

post https://api.openai-hk.com/runwayml/v1/video_to_video

shell
curl --request POST \
  --url https://api.openai-hk.com/runwayml/v1/video_to_video \
  --header 'Accept: */*' \
  --header 'Authorization: Bearer hk-your-hk-key' \
  --header 'Content-Type: application/json' \
  --data '{
    "videoUri": "http://example.com",
    "promptText": "増加下雨効果",
    "seed": 4294967295,
    "model": "gen4_aleph",
    "references": [
      {
        "type": "image",
        "uri": "http://example.com"
      }
    ],
    "ratio": "1280:720",
    "contentModeration": {
      "publicFigureThreshold": "auto"
    }
  }'
curl --request POST \
  --url https://api.openai-hk.com/runwayml/v1/video_to_video \
  --header 'Accept: */*' \
  --header 'Authorization: Bearer hk-your-hk-key' \
  --header 'Content-Type: application/json' \
  --data '{
    "videoUri": "http://example.com",
    "promptText": "増加下雨効果",
    "seed": 4294967295,
    "model": "gen4_aleph",
    "references": [
      {
        "type": "image",
        "uri": "http://example.com"
      }
    ],
    "ratio": "1280:720",
    "contentModeration": {
      "publicFigureThreshold": "auto"
    }
  }'

リクエストボディ

json
{
  "videoUri": "http://example.com",
  "promptText": "増加下雨効果",
  "seed": 4294967295,
  "model": "gen4_aleph",
  "references": [
    {
      "type": "image",
      "uri": "http://example.com"
    }
  ],
  "ratio": "1280:720",
  "contentModeration": {
    "publicFigureThreshold": "auto"
  }
}
{
  "videoUri": "http://example.com",
  "promptText": "増加下雨効果",
  "seed": 4294967295,
  "model": "gen4_aleph",
  "references": [
    {
      "type": "image",
      "uri": "http://example.com"
    }
  ],
  "ratio": "1280:720",
  "contentModeration": {
    "publicFigureThreshold": "auto"
  }
}

主要フィールドの説明

フィールドタイプ説明
videoUristring参照ビデオ
promptTextstringプロンプトテキスト
referencesobject[]参照画像
references[0].uristring画像URLまたはbase64
modelstring対応モデル:gen4_aleph

キャラクターの制御

  • Runway Act Twoは、参照ビデオを使用してキャラクターの表情と身体の動きを制御します。
  • 価格:生成あたり10,000クレジット

post https://api.openai-hk.com/runwayml/v1/character_performance

shell
curl --request POST \
  --url https://api.openai-hk.com/runwayml/v1/character_performance \
  --header 'Accept: */*' \
  --header 'Authorization: Bearer hk-your-hk-key' \
  --header 'Content-Type: application/json' \
  --data '{
    "character": {
      "type": "video",
      "uri": "http://example.com"
    },
    "reference": {
      "type": "video",
      "uri": "http://example.com"
    },
    "bodyControl": true,
    "expressionIntensity": 3,
    "seed": 4294967295,
    "model": "act_two",
    "ratio": "1280:720",
    "contentModeration": {
      "publicFigureThreshold": "auto"
    }
  }'
curl --request POST \
  --url https://api.openai-hk.com/runwayml/v1/character_performance \
  --header 'Accept: */*' \
  --header 'Authorization: Bearer hk-your-hk-key' \
  --header 'Content-Type: application/json' \
  --data '{
    "character": {
      "type": "video",
      "uri": "http://example.com"
    },
    "reference": {
      "type": "video",
      "uri": "http://example.com"
    },
    "bodyControl": true,
    "expressionIntensity": 3,
    "seed": 4294967295,
    "model": "act_two",
    "ratio": "1280:720",
    "contentModeration": {
      "publicFigureThreshold": "auto"
    }
  }'

リクエストボディ

json
{
  "character": {
    "type": "video",
    "uri": "http://example.com"
  },
  "reference": {
    "type": "video",
    "uri": "http://example.com"
  },
  "bodyControl": true,
  "expressionIntensity": 3,
  "seed": 4294967295,
  "model": "act_two",
  "ratio": "1280:720",
  "contentModeration": {
    "publicFigureThreshold": "auto"
  }
}
{
  "character": {
    "type": "video",
    "uri": "http://example.com"
  },
  "reference": {
    "type": "video",
    "uri": "http://example.com"
  },
  "bodyControl": true,
  "expressionIntensity": 3,
  "seed": 4294967295,
  "model": "act_two",
  "ratio": "1280:720",
  "contentModeration": {
    "publicFigureThreshold": "auto"
  }
}