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

Veo 3 Fast 發布於 2025-05

Google video
價格$0.15/s

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

30 秒用上 Veo 3 Fast

非同步任務 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.0-fast-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 Fast

更快更省的 Veo 3 檔位
有聲或無聲輸出,分開計價
原生音訊,720p/1080p,4-8 秒

Veo 3 Fast 是 Google Veo 3 世代的速度與成本檔位,以更低的延遲與價格提供與 Veo 3 相同的核心能力。

  • 它涵蓋文生影片與首幀圖生影片,帶原生同步音訊,輸出 720p 或 1080p 的 .mp4 片段,24 fps、4、6 或 8 秒、16:9 或 9:16;generateAudio 開關在有聲與無聲輸出之間選擇。
  • 這個定位適合大批量草稿、社群格式與快速迭代——吞吐量比精修更重要的場景;Google 現在把 Veo 3.1 Fast 列為建議的替代品。
  • Synthorai 透過非同步 /v1/videos 任務 API(建立後輪詢,或 Prefer: wait 語意)提供它,並按有聲與無聲的各自費率、以輸出秒計費。

規格與限制

模態text + image → video
特性vision
解析度720p / 1080p
時長4 / 6 / 8 s
幀率24 fps
寬高比16:9 · 9:16
影片輸入text-to-video · first-frame image-to-video
原生音訊是——直接生成聲音
格式.mp4
備註Speed/cost tier of Google's Veo 3 generation: the same capability profile as Veo 3 at lower latency and price — text-to-video and first-frame image-to-video with native synchronized audio, 720p/1080p, 24 fps, 4/6/8 s, 16:9 and 9:16; a generateAudio switch selects sound-on vs silent output. Google now lists Veo 3.1 Fast as the recommended replacement. Synthorai serves it via the async /v1/videos job API and bills per output second at separate sound-on and silent rates.

依據 Google 官方文件 ↗

常見問題

Veo 3 Fast API 可以免費試用嗎?

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

Veo 3 Fast 最擅長什麼?

更快更省的 Veo 3 檔位,以及有聲或無聲輸出,分開計價和原生音訊,720p/1080p,4-8 秒。完整能力請見 About 一節,內容取自廠商官方發布說明。

Veo 3 Fast 的價格是多少?

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

如何呼叫 Veo 3 Fast API 生成影片?

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

如何開通 Veo 3 Fast?

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

相關模型

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