OPENCLAW + VEO 3

OpenClaw で Veo 3 を使う。

Veo 3 は Google DeepMind の動画生成モデルで、最長 8秒・1080p のクリップを、ネイティブ音声——動画と同期して生成される対話、環境音、音楽——とともに生成します。OpenClaw のエージェントはチャットと同じ RunAPI キーとエンドポイントで呼び出し、追加のスキルをインストールする必要はありません。

1つの APIキー · テキスト→動画エンドポイント · ネイティブ音声出力
RunAPI を通じて Google Veo 3 を使い、ネイティブ音声付きのシネマティックな動画クリップを生成します。

要件:
- RUNAPI_API_KEY から APIキーを読み込む。キーをハードコードしない。
- https://runapi.ai/api/v1/veo_3_1/text_to_video へ POST リクエストを送信する
- model を "veo-3.1" に設定する。
- シーン、カメラの動き、音声の手がかりを含む記述的なプロンプトを書く。
- duration_seconds を 4、6、または 8 に設定する。
- aspect_ratio を "16:9"、"9:16"、または "auto" に設定する。
- タスクは非同期です。返された task_id を status が "completed" になるまでポーリングする。
- 完了したら、レスポンスの output から動画 URL を読み込む。
curl -X POST https://runapi.ai/api/v1/veo_3_1/text_to_video \
  -H "Authorization: Bearer $RUNAPI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "veo-3.1",
    "prompt": "A woman walks through a bustling Tokyo street at night, neon signs reflecting on wet pavement. She speaks into her phone: I just arrived. Ambient city noise, distant car horns, light rain.",
    "duration_seconds": 8,
    "aspect_ratio": "16:9"
  }'
{
  "task_id": "tsk_abc123",
  "status": "pending",
  "model": "veo-3.1"
}
curlコマンドをコピーしてテスト veo-3
仕組み

OpenClaw で Veo 3 を使う3ステップ

1

Configure RunAPI

Set the RUNAPI_API_KEY environment variable. If you already configured RunAPI as an OpenClaw provider for chat, the same key works for video generation — no additional setup or provider accounts.

export RUNAPI_API_KEY=runapi_xxx
2

Call Veo 3 text_to_video

Send a POST to the text_to_video endpoint with model set to veo-3.1. Include a prompt with scene descriptions and audio cues (dialogue, ambient sounds). Set duration_seconds to 4, 6, or 8 and aspect_ratio to 16:9 or 9:16.

POST /api/v1/veo_3_1/text_to_video
3

Poll for the result

The endpoint returns a task_id immediately. Poll the task status endpoint until the status changes to completed, then retrieve the output video URL. The video includes synchronized audio generated from your prompt.

GET /api/v1/veo_3_1/text_to_video/tsk_abc123
パラメータ

Veo 3 text_to_video パラメータ

パラメータ 説明
model string Required. veo-3.1 (standard quality) or veo-3.1-fast (lower cost, faster generation).
prompt string Required. Scene description including visual action, camera movement, and audio cues for dialogue or ambient sound.
duration_seconds integer Optional. Video length in seconds. Accepted values: 4, 6, 8. Defaults to 8.
aspect_ratio string Optional. Output aspect ratio. Accepted values: 16:9, 9:16, auto.
input_mode string Optional. Generation mode. text (default), first_and_last_frames (keyframe-guided), or reference (style reference).
first_frame_image_url string Optional. URL of the first frame image. Used when input_mode is first_and_last_frames.
last_frame_image_url string Optional. URL of the last frame image. Used when input_mode is first_and_last_frames.
reference_image_urls array Optional. URLs of style reference images. Used when input_mode is reference.
callback_url string Optional. Webhook URL that receives a POST when the task completes.

OpenClaw上のVeo 3とは?

Veo 3はGoogle DeepMindの動画生成モデルで、正確な環境音声を伴うリアルな映画品質の映像を制作します。同期した対話・効果音・音楽付きで最長8秒の1080p動画を生成し、別途の音声パイプラインは不要です。OpenClaw agentはRunAPIエンドポイント経由でチャットと同じAPIキーを使って呼び出します。

Veo 3の活用例

街頭インタビューと会話シーン

キャラクターが台詞を話す短編動画シーンを生成します。プロンプトに会話内容を記述すると、Veo 3が口の動きと都市の環境ノイズを同期して生成します。

アトモスフェリックな風景コンテンツ

旅行Vlogシーン・雨のある都市環境・霧の自然ショットを作成し、Veo 3の環境音声生成がポストプロダクションの音響作業なしに奥行きを加えます。

ナレーション付き商品デモ動画

ナレーターが機能を説明する商品ショーケースクリップを生成します。プロンプトにナレーションテキストを含めると、Veo 3がビジュアルデモと音声を1回のパスでレンダリングします。

FAQ

Veo 3 + OpenClaw のよくある質問

OpenClaw の基本設定

まだ設定していませんか?OpenClaw の RunAPI セットアップガイドから始めましょう。

OpenClaw セットアップガイド →

Veo 3 モデルカタログ

Veo 3 のバリアント、価格帯、API ドキュメントを確認する。

RunAPI の Veo 3 →

今すぐ OpenClaw で Veo 3 を試す。

無料の RunAPI キーを取得し、プロンプトを OpenClaw に貼り付けて、Google Veo 3 でネイティブ音声付きのシネマティックな動画を生成しましょう。