Skip to content

ビデオモデル Google Veo

  • 2025.08.06 このサイトは google ビデオモデルに対応しました
  • 対応モデル:veo2 veo2-fast veo2-fast-components veo2-fast-frames veo2-pro veo3 veo3-fast veo3-fast-frames veo3-frames veo3-pro-frames veo3-pro
  • text-to-video image-to-video keyframe-to-video に対応
  • 生成ごとに課金、1リクエストにつき1ビデオ

料金

  • 1 CNY = 10000 クレジット
モデル料金(クレジット)
veo25000
veo2-fast5000
veo2-fast-components5000
veo2-fast-frames5000
veo310000
veo3-fast10000
veo3-fast-frames10000
veo3-frames10000
veo2-pro50000
veo3-pro-frames50000
veo3-pro50000
veo3.1-pro50000
veo3.110000
veo3.1-fast10000
veo3.1-components10000
veo3.1-pro-4k50000
veo3.1-4k12000
veo3.1-components-4k12000

オンラインテスト

オンラインテスト

    1. https://video.ddaiai.com にアクセス(ブロックされている場合は、suibian などの別のサブドメインプレフィックスをお試しください)
    1. ブロックされている場合は、アドレスを自分で変更できます:https://suibian.ddaiai.comsuibian を別の文字列に置き換えてください。例:https://2025.ddaiai.com、すべて機能します

設定

google-veo

結果

google-veo

Google Veo API

  • すべてのリクエストには AuthorizationContent-Type ヘッダーが必要です
shell
'Authorization: Bearer hk-your-key'
'Content-Type: application/json'
'Authorization: Bearer hk-your-key'
'Content-Type: application/json'

1. タスクの作成

post https://api.openai-hk.com/veo/v1/video/create

shell
curl --request POST \
  --url https://api.openai-hk.com/veo/v1/video/create \
  --header 'Authorization: Bearer hk-your-hk-key' \
  --header 'Content-Type: application/json' \
  --data '{
    "prompt": "A casual street interview on a busy New York City sidewalk in the afternoon. The interviewer holds a plain, unbranded microphone and asks: Have you seen Google's new Veo3 model It is a super good model. Person replies: Yeah I saw it, it's already available on openai-hk, It's so crazy.",
    "model": "veo3",
    "enhance_prompt": true
}'
curl --request POST \
  --url https://api.openai-hk.com/veo/v1/video/create \
  --header 'Authorization: Bearer hk-your-hk-key' \
  --header 'Content-Type: application/json' \
  --data '{
    "prompt": "A casual street interview on a busy New York City sidewalk in the afternoon. The interviewer holds a plain, unbranded microphone and asks: Have you seen Google's new Veo3 model It is a super good model. Person replies: Yeah I saw it, it's already available on openai-hk, It's so crazy.",
    "model": "veo3",
    "enhance_prompt": true
}'
  • リクエストボディ
json
{
  "prompt": "A casual street interview on a busy New York City sidewalk in the afternoon. The interviewer holds a plain, unbranded microphone and asks: Have you seen Google's new Veo3 model It is a super good model. Person replies: Yeah I saw it, it's already available on openai-hk, It's so crazy.",
  "model": "veo3-fast",
  "enhance_prompt": true,
  "images": ["https://a.com/1.jpg", "https://a.com/2.jpg"]
}
{
  "prompt": "A casual street interview on a busy New York City sidewalk in the afternoon. The interviewer holds a plain, unbranded microphone and asks: Have you seen Google's new Veo3 model It is a super good model. Person replies: Yeah I saw it, it's already available on openai-hk, It's so crazy.",
  "model": "veo3-fast",
  "enhance_prompt": true,
  "images": ["https://a.com/1.jpg", "https://a.com/2.jpg"]
}
  • リクエストボディのフィールド説明

    フィールドタイプ説明
    promptstringビデオ生成のためのプロンプト
    modelstringビデオ生成のためのモデル名
    enhance_promptbooleanプロンプトを強化するかどうか
    imagesstring[]ビデオ生成のための画像リスト
    aspect_ratiostringアスペクト比 16:9 16:9、画像なしの場合のみ利用可能
    enable_upsamplebooleanアップサンプルを有効にするかどうか

    images:モデルが veo3-fast-frames の場合、最大2枚の画像(最初と最後のフレーム)に対応。モデルが veo3-pro-frames の場合、最大1枚の最初のフレームに対応。モデルが veo3.x-xxxx-components の場合、最大3枚の画像に対応し、ビデオ内の要素として機能します。

  • レスポンスボディ

json
{
  "id": "veo3-fast:1754487582-iib208CF9a",
  "status": "pending"
}
{
  "id": "veo3-fast:1754487582-iib208CF9a",
  "status": "pending"
}

2. タスクステータスの照会

get https://api.openai-hk.com/veo/v1/video/feed/{id}

shell
curl --request GET \
  --url https://api.openai-hk.com/veo/v1/video/feed/veo3-fast:1754487582-iib208CF9a \
  --header 'Authorization: Bearer hk-your-hk-key' \
  --header 'Content-Type: application/json'
curl --request GET \
  --url https://api.openai-hk.com/veo/v1/video/feed/veo3-fast:1754487582-iib208CF9a \
  --header 'Authorization: Bearer hk-your-hk-key' \
  --header 'Content-Type: application/json'
  • レスポンスボディ
json
{
  "id": "veo3-fast:1754487582-iib208CF9a",
  "status": "completed",
  "video_url": "https://filesystem.site/cdn/20250806/5VpavR5qkSpnsbFbTbTpC6aVPQMrgi.mp4"
}
{
  "id": "veo3-fast:1754487582-iib208CF9a",
  "status": "completed",
  "video_url": "https://filesystem.site/cdn/20250806/5VpavR5qkSpnsbFbTbTpC6aVPQMrgi.mp4"
}
  • フィールド説明
フィールドタイプ説明
idstringタスクID
statusstringタスクステータス:completed failed pending video_generating
video_urlstringビデオURL