跳转到主要内容
POST
/
v3
/
async
/
vidu-q3-turbo-f2v
Vidu Q3 Turbo 首尾帧生成视频
curl --request POST \
  --url https://api.ppio.com/v3/async/vidu-q3-turbo-f2v \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>' \
  --data '
{
  "seed": 123,
  "audio": true,
  "images": [
    "<string>"
  ],
  "is_rec": true,
  "prompt": "<string>",
  "duration": 123,
  "off_peak": true,
  "resolution": "<string>"
}
'
import requests

url = "https://api.ppio.com/v3/async/vidu-q3-turbo-f2v"

payload = {
"seed": 123,
"audio": True,
"images": ["<string>"],
"is_rec": True,
"prompt": "<string>",
"duration": 123,
"off_peak": True,
"resolution": "<string>"
}
headers = {
"Content-Type": "<content-type>",
"Authorization": "<authorization>"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
method: 'POST',
headers: {'Content-Type': '<content-type>', Authorization: '<authorization>'},
body: JSON.stringify({
seed: 123,
audio: true,
images: ['<string>'],
is_rec: true,
prompt: '<string>',
duration: 123,
off_peak: true,
resolution: '<string>'
})
};

fetch('https://api.ppio.com/v3/async/vidu-q3-turbo-f2v', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.ppio.com/v3/async/vidu-q3-turbo-f2v",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'seed' => 123,
'audio' => true,
'images' => [
'<string>'
],
'is_rec' => true,
'prompt' => '<string>',
'duration' => 123,
'off_peak' => true,
'resolution' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: <authorization>",
"Content-Type: <content-type>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"strings"
"net/http"
"io"
)

func main() {

url := "https://api.ppio.com/v3/async/vidu-q3-turbo-f2v"

payload := strings.NewReader("{\n \"seed\": 123,\n \"audio\": true,\n \"images\": [\n \"<string>\"\n ],\n \"is_rec\": true,\n \"prompt\": \"<string>\",\n \"duration\": 123,\n \"off_peak\": true,\n \"resolution\": \"<string>\"\n}")

req, _ := http.NewRequest("POST", url, payload)

req.Header.Add("Content-Type", "<content-type>")
req.Header.Add("Authorization", "<authorization>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.post("https://api.ppio.com/v3/async/vidu-q3-turbo-f2v")
.header("Content-Type", "<content-type>")
.header("Authorization", "<authorization>")
.body("{\n \"seed\": 123,\n \"audio\": true,\n \"images\": [\n \"<string>\"\n ],\n \"is_rec\": true,\n \"prompt\": \"<string>\",\n \"duration\": 123,\n \"off_peak\": true,\n \"resolution\": \"<string>\"\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.ppio.com/v3/async/vidu-q3-turbo-f2v")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Content-Type"] = '<content-type>'
request["Authorization"] = '<authorization>'
request.body = "{\n \"seed\": 123,\n \"audio\": true,\n \"images\": [\n \"<string>\"\n ],\n \"is_rec\": true,\n \"prompt\": \"<string>\",\n \"duration\": 123,\n \"off_peak\": true,\n \"resolution\": \"<string>\"\n}"

response = http.request(request)
puts response.read_body
{
  "task_id": "<string>"
}
Vidu Q3 Turbo 首尾帧生成视频可根据首帧和尾帧图片生成高质量视频,通过文本引导运动插值,支持最高 1080p 分辨率。
这是一个异步API,只会返回异步任务的 task_id。您应该使用该 task_id 请求 查询任务结果 API 来检索视频生成结果。

请求头

Content-Type
string
必填
枚举值: application/json
Authorization
string
必填
Bearer 身份验证格式,例如:Bearer {{API 密钥}}。

请求体

seed
integer
随机种子,用于结果可复现。传 0 表示随机。
audio
boolean
默认值:true
是否使用音视频直出能力,默认为 true。false 输出静音视频,true 输出音画同步视频(包括台词和音效)。仅 Q3 系列模型支持。
images
string[]
必填
两张图片 URL 或 Base64 编码图片。第一张为首帧图,第二张为尾帧图。支持 png、jpeg、jpg、webp 格式,单张不超过 50MB。首尾帧两张图的分辨率需相近(首帧/尾帧比例在 0.8-1.25 之间)。宽高比需小于 1:4 或大于 4:1。数组长度:2 - 2
is_rec
boolean
是否使用推荐 prompt。开启后系统自动生成 prompt。
prompt
string
描述首尾帧之间期望的视频运动效果的文本,最多 1500 个字符。长度限制:0 - 1500
duration
integer
默认值:5
视频时长(秒),范围 1-16。取值范围:[1, 16]
off_peak
boolean
默认值:false
是否使用错峰模式,任务将在 48 小时内处理,费用更低。
resolution
string
默认值:"720p"
输出视频分辨率。可选值:540p, 720p, 1080p

响应

task_id
string
必填
异步任务的 task_id。您应该使用该 task_id 请求 查询任务结果 API 以获取生成结果
最后修改于 2026年7月3日