🎁 新用戶 免費註冊,送 10 次呼叫,最高 $1,免綁卡。

Veo 3.1 發布於 2025-10

Google video
價格$0.4/s

廠商牌價,無平台加價,按用量計費。 以下為官方 list 價。已登入的使用者可在 /console/pricing 查看含工作空間折扣的實際價格。

30 秒用上 Veo 3.1

非同步任務 API:建立任務後輪詢,或用 Prefer: wait 讓請求保持開啟等待完成。POST /v1/videos

import time

import requests

BASE = "https://synthorai.io/v1"
HEADERS = {"Authorization": "Bearer sk-syn-..."}

# 1) create the video generation job (POST /v1/videos)
task = requests.post(
    f"{BASE}/videos",
    headers=HEADERS,
    json={
        "model": "veo-3.1-generate-001",
        "prompt": "a watercolor lighthouse at dawn, waves rolling in, camera pulling back",
        "resolution": "720p",
        "duration": 5,
    },
).json()

# 2) poll the job until it reaches a terminal state
while task["status"] in ("queued", "in_progress"):
    time.sleep(5)
    task = requests.get(f"{BASE}/videos/{task['id']}", headers=HEADERS).json()

# 3) completed → signed video URL (valid ~24h — download and store it promptly)
if task["status"] == "completed":
    print(task["data"][0]["url"])
else:
    print(task["error"])

關於 Veo 3.1

帶原生音訊的現行 Veo 旗艦
首/尾幀圖生影片,最多兩張引導圖
有聲或無聲輸出,分開計價

Veo 3.1 是 Google 目前的旗艦影片生成模型,也是 Veo 產品線的最新一代。

  • 它可從文字提示詞、從首幀圖像,或作為兩張引導圖之間的首尾幀插值來生成 .mp4 片段,全部帶原生同步音訊——對嘴對白、環境音與音樂。
  • 輸出為 720p 或 1080p、24 fps、4、6 或 8 秒、16:9 或 9:16,generateAudio 開關在有聲與無聲輸出之間選擇。
  • 相較 Veo 3,Veo 3.1 提升了音畫同步與參考圖的還原度。
  • Synthorai 透過非同步 /v1/videos 任務 API 提供它——建立任務,接著輪詢(或用 Prefer: wait 讓呼叫保持開啟)直到簽名影片 URL 就緒——並按有聲與無聲的各自費率、以輸出秒計費。

規格與限制

模態text + image → video
特性vision
解析度720p / 1080p
時長4 / 6 / 8 s
幀率24 fps
寬高比16:9 · 9:16
影片輸入text-to-video · first-frame & first/last-frame image-to-video (up to 2 guide images)
原生音訊是——直接生成聲音
格式.mp4
備註Google's Veo 3.1 video model, the current flagship of the Veo line: text-to-video, first-frame image-to-video, and first-and-last-frame interpolation (up to two guide images), all with native synchronized audio (dialogue, ambient sound, music); 720p/1080p, 24 fps, 4/6/8 s, 16:9 and 9:16; a generateAudio switch selects sound-on vs silent output. Veo 3.1 sharpens audio-visual sync and reference-image adherence over Veo 3. Synthorai serves it via the async /v1/videos job API — create a task, then poll it (or hold the request open with Prefer: wait) until the signed video URL is ready — and bills per output second at separate sound-on and silent rates.

依據 Google 官方文件 ↗

常見問題

Veo 3.1 API 可以免費試用嗎?

可以,新帳號可獲得 10 次試用呼叫和最高 $1 的免費額度,無需信用卡。足以在新增付款方式之前,用真實工作負載試試 Veo 3.1。

Veo 3.1 最擅長什麼?

帶原生音訊的現行 Veo 旗艦,以及首/尾幀圖生影片,最多兩張引導圖和有聲或無聲輸出,分開計價。完整能力請見 About 一節,內容取自廠商官方發布說明。

Veo 3.1 的價格是多少?

在 Synthorai 上,Veo 3.1 依每秒生成影片 $0.4 計費,僅成功生成才計費:按用量計費,無平台加價,無需訂閱。

如何呼叫 Veo 3.1 API 生成影片?

向 Synthorai 的 /v1/videos 發送 POST,model="veo-3.1-generate-001",建立一個非同步任務;接著輪詢任務狀態,或加上 Prefer: wait 標頭讓請求保持開啟等待,直到取得影片 URL。無需廠商 SDK。

如何開通 Veo 3.1?

把現有 OpenAI SDK 的 base_url 指向 "https://synthorai.io/v1",model 設為 "veo-3.1-generate-001" 即可。一組 API key 通用閘道上的所有模型。

相關模型

免費取得 API key 算算你的成本 →