彈性參數
可設定 6 個已記錄的參數,包括 aspect_ratio, duration_seconds, first_frame_image_url, input_mode, last_frame_image_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-lite",
"prompt": "Generate an 8-second cinematic drone shot of a coastal highway at golden hour, with waves crashing below and ambient wind audio."
}'
import { Veo31Client } from "@runapi.ai/veo-3-1";
const client = new Veo31Client();
const result = await client.textToVideo.run({
model: "veo-3.1-lite",
prompt: "Generate an 8-second cinematic drone shot of a coastal highway at golden hour, with waves crashing below and ambient wind audio.",
});
import os
import requests
response = requests.post(
"https://runapi.ai/api/v1/veo_3_1/text_to_video",
headers={"Authorization": f"Bearer {os.environ['RUNAPI_API_KEY']}"},
json={"model":"veo-3.1-lite","prompt":"Generate an 8-second cinematic drone shot of a coastal highway at golden hour, with waves crashing below and ambient wind audio."}
)
response.raise_for_status()
<?php
$client = curl_init("https://runapi.ai/api/v1/veo_3_1/text_to_video");
curl_setopt_array($client, [
CURLOPT_HTTPHEADER => ["Authorization: Bearer " . getenv("RUNAPI_API_KEY"), "Content-Type: application/json"],
CURLOPT_POSTFIELDS => json_encode([
'model' => 'veo-3.1-lite',
'prompt' => 'Generate an 8-second cinematic drone shot of a coastal highway at golden hour, with waves crashing below and ambient wind audio.',
])
]);
$response = curl_exec($client);
RunApi client = new RunApi(System.getenv("RUNAPI_API_KEY"));
Task task = client.textToVideo().run({"model":"veo-3.1-lite","prompt":"Generate an 8-second cinematic drone shot of a coastal highway at golden hour, with waves crashing below and ambient wind audio."});
task.waitForResult();
require "runapi/veo_3_1"
client = RunApi::Veo31::Client.new
result = client.text_to_video.run(
model: "veo-3.1-lite",
prompt: "Generate an 8-second cinematic drone shot of a coastal highway at golden hour, with waves crashing below and ambient wind audio."
)
client := runapi.NewClient(os.Getenv("RUNAPI_API_KEY"))
task, err := client.textToVideo.Run({"model":"veo-3.1-lite","prompt":"Generate an 8-second cinematic drone shot of a coastal highway at golden hour, with waves crashing below and ambient wind audio."})
if err != nil { log.Fatal(err) }
task.Wait()
$ runapi generate \
--model veo-3.1-lite \
--endpoint text_to_video \
--wait
3 個版本可用
選擇任一模型,幾秒內即可開始生成。
選擇任一模型,幾秒內即可開始生成。
| 提供者 | |
| 模型 ID | veo-3.1-lite |
| 模態 | Video |
| 任務類型 | Asynchronous |
| API 端點 | /api/v1/veo_3_1/text_to_video |
| 計費單位 | call |
| 輸入參數 | aspect_ratio, duration_seconds, first_frame_image_url, input_mode, last_frame_image_url, reference_image_urls |
| 最大時長 | 4s, 6s, 8s |
| 長寬比 | 16:9, 9:16 |
| 目錄狀態 | 可直接上線 |
免費註冊後,從控制台建立 veo-3.1-lite 的 API 金鑰。
向 /api/v1/veo_3_1/text_to_video 傳送 POST 請求,並傳入 veo-3.1-lite 模型 ID 與參數。
輪詢工作或依照回呼取得已完成的 veo-3.1-lite 結果。
可設定 6 個已記錄的參數,包括 aspect_ratio, duration_seconds, first_frame_image_url, input_mode, last_frame_image_url。
公開 1 個公共 endpoint:text_to_video。
依 call 計量,無需訂閱。
input_mode暫無描述。 (text, first_and_last_frames, reference)
aspect_ratio暫無描述。 (16:9, 9:16)
duration_seconds暫無描述。 (4, 6, 8)
last_frame_image_url暫無描述。
reference_image_urls暫無描述。
first_frame_image_url暫無描述。
根據文字簡報生成產品上市短片與短影音廣告,將製作時間從數週縮短到數小時。
無需攝影機或團隊,即可大規模將課程腳本轉為動畫解說影片。
直接從 prompt 產生適合社群平台的爆紅短影音內容。
傳入 quickstart 顯示的 model ID。
每個金鑰的速率限制會依使用方案而調整。請查看定價頁面以了解目前限制。
可以——variant 只是旗標。只要變更 model 參數即可切換。
只要支援串流,RunAPI 就會端到端串流。
請在公開 GitHub repo 提交 issue,或寄信給支援。