Vidu Q3 Turbo 图生视频
curl --request POST \
--url https://api.ppio.com/v3/async/vidu-q3-turbo-i2v \
--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,
"audio_type": "<string>",
"resolution": "<string>"
}
'import requests
url = "https://api.ppio.com/v3/async/vidu-q3-turbo-i2v"
payload = {
"seed": 123,
"audio": True,
"images": ["<string>"],
"is_rec": True,
"prompt": "<string>",
"duration": 123,
"off_peak": True,
"audio_type": "<string>",
"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,
audio_type: '<string>',
resolution: '<string>'
})
};
fetch('https://api.ppio.com/v3/async/vidu-q3-turbo-i2v', 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-i2v",
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,
'audio_type' => '<string>',
'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-i2v"
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 \"audio_type\": \"<string>\",\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-i2v")
.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 \"audio_type\": \"<string>\",\n \"resolution\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ppio.com/v3/async/vidu-q3-turbo-i2v")
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 \"audio_type\": \"<string>\",\n \"resolution\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"task_id": "<string>"
}视频
Vidu Q3 Turbo 图生视频
POST
/
v3
/
async
/
vidu-q3-turbo-i2v
Vidu Q3 Turbo 图生视频
curl --request POST \
--url https://api.ppio.com/v3/async/vidu-q3-turbo-i2v \
--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,
"audio_type": "<string>",
"resolution": "<string>"
}
'import requests
url = "https://api.ppio.com/v3/async/vidu-q3-turbo-i2v"
payload = {
"seed": 123,
"audio": True,
"images": ["<string>"],
"is_rec": True,
"prompt": "<string>",
"duration": 123,
"off_peak": True,
"audio_type": "<string>",
"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,
audio_type: '<string>',
resolution: '<string>'
})
};
fetch('https://api.ppio.com/v3/async/vidu-q3-turbo-i2v', 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-i2v",
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,
'audio_type' => '<string>',
'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-i2v"
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 \"audio_type\": \"<string>\",\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-i2v")
.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 \"audio_type\": \"<string>\",\n \"resolution\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ppio.com/v3/async/vidu-q3-turbo-i2v")
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 \"audio_type\": \"<string>\",\n \"resolution\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"task_id": "<string>"
}Vidu Q3 Turbo 图像转视频工具,可将静态图像转换为动态视频,支持文本引导运动生成,提供多种分辨率和宽高比选择。
这是一个异步API,只会返回异步任务的 task_id。您应该使用该 task_id 请求 查询任务结果 API 来检索视频生成结果。
请求头
枚举值:
application/jsonBearer 身份验证格式,例如:Bearer {{API 密钥}}。
请求体
随机种子,用于可重复生成;0 或不传则随机生成。取值范围:[0, 2147483647]
是否使用音视频直出能力。设为 true 时,输出带台词以及背景音的视频。Q3 模型默认为 true。
参考图片 URL 数组;支持
.jpg、.jpeg、.png、.webp。
每张图片大小不超过 50MB;宽高比需在 1:4 与 4:1 之间。启用音画匹配;设为 true 时,音频节奏与视频动态同步。
视频生成的运动描述;描述场景运动、动作和动态效果。长度限制:0 - 5000
视频时长(秒)。取值范围:[1, 16]
使用非高峰时段定价;设为 true 时,任务排队等待非高峰时段处理以降低成本。
音频类型,audio 为 true 时生效。all = 音效+人声,speech_only = 仅人声,sound_effect_only = 仅音效。可选值:
all, speech_only, sound_effect_only输出视频分辨率。可选值:
540p, 720p, 1080p响应
异步任务的 task_id。您应该使用该 task_id 请求 查询任务结果 API 以获取生成结果
最后修改于 2026年7月3日
⌘I