Vidu Q3 Pro 图生视频
curl --request POST \
--url https://api.ppio.com/v3/async/vidu-q3-pro-i2v \
--header 'Authorization: <authorization>' \
--header 'Content-Type: <content-type>' \
--data '
{
"seed": 123,
"audio": "<string>",
"style": "<string>",
"images": [
"<string>"
],
"is_rec": true,
"prompt": "<string>",
"wm_url": "<string>",
"duration": 123,
"off_peak": true,
"watermark": true,
"resolution": "<string>",
"wm_position": "<string>",
"aspect_ratio": "<string>"
}
'import requests
url = "https://api.ppio.com/v3/async/vidu-q3-pro-i2v"
payload = {
"seed": 123,
"audio": "<string>",
"style": "<string>",
"images": ["<string>"],
"is_rec": True,
"prompt": "<string>",
"wm_url": "<string>",
"duration": 123,
"off_peak": True,
"watermark": True,
"resolution": "<string>",
"wm_position": "<string>",
"aspect_ratio": "<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: '<string>',
style: '<string>',
images: ['<string>'],
is_rec: true,
prompt: '<string>',
wm_url: '<string>',
duration: 123,
off_peak: true,
watermark: true,
resolution: '<string>',
wm_position: '<string>',
aspect_ratio: '<string>'
})
};
fetch('https://api.ppio.com/v3/async/vidu-q3-pro-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-pro-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' => '<string>',
'style' => '<string>',
'images' => [
'<string>'
],
'is_rec' => true,
'prompt' => '<string>',
'wm_url' => '<string>',
'duration' => 123,
'off_peak' => true,
'watermark' => true,
'resolution' => '<string>',
'wm_position' => '<string>',
'aspect_ratio' => '<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-pro-i2v"
payload := strings.NewReader("{\n \"seed\": 123,\n \"audio\": \"<string>\",\n \"style\": \"<string>\",\n \"images\": [\n \"<string>\"\n ],\n \"is_rec\": true,\n \"prompt\": \"<string>\",\n \"wm_url\": \"<string>\",\n \"duration\": 123,\n \"off_peak\": true,\n \"watermark\": true,\n \"resolution\": \"<string>\",\n \"wm_position\": \"<string>\",\n \"aspect_ratio\": \"<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-pro-i2v")
.header("Content-Type", "<content-type>")
.header("Authorization", "<authorization>")
.body("{\n \"seed\": 123,\n \"audio\": \"<string>\",\n \"style\": \"<string>\",\n \"images\": [\n \"<string>\"\n ],\n \"is_rec\": true,\n \"prompt\": \"<string>\",\n \"wm_url\": \"<string>\",\n \"duration\": 123,\n \"off_peak\": true,\n \"watermark\": true,\n \"resolution\": \"<string>\",\n \"wm_position\": \"<string>\",\n \"aspect_ratio\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ppio.com/v3/async/vidu-q3-pro-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\": \"<string>\",\n \"style\": \"<string>\",\n \"images\": [\n \"<string>\"\n ],\n \"is_rec\": true,\n \"prompt\": \"<string>\",\n \"wm_url\": \"<string>\",\n \"duration\": 123,\n \"off_peak\": true,\n \"watermark\": true,\n \"resolution\": \"<string>\",\n \"wm_position\": \"<string>\",\n \"aspect_ratio\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"task_id": "<string>"
}视频
Vidu Q3 Pro 图生视频
POST
/
v3
/
async
/
vidu-q3-pro-i2v
Vidu Q3 Pro 图生视频
curl --request POST \
--url https://api.ppio.com/v3/async/vidu-q3-pro-i2v \
--header 'Authorization: <authorization>' \
--header 'Content-Type: <content-type>' \
--data '
{
"seed": 123,
"audio": "<string>",
"style": "<string>",
"images": [
"<string>"
],
"is_rec": true,
"prompt": "<string>",
"wm_url": "<string>",
"duration": 123,
"off_peak": true,
"watermark": true,
"resolution": "<string>",
"wm_position": "<string>",
"aspect_ratio": "<string>"
}
'import requests
url = "https://api.ppio.com/v3/async/vidu-q3-pro-i2v"
payload = {
"seed": 123,
"audio": "<string>",
"style": "<string>",
"images": ["<string>"],
"is_rec": True,
"prompt": "<string>",
"wm_url": "<string>",
"duration": 123,
"off_peak": True,
"watermark": True,
"resolution": "<string>",
"wm_position": "<string>",
"aspect_ratio": "<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: '<string>',
style: '<string>',
images: ['<string>'],
is_rec: true,
prompt: '<string>',
wm_url: '<string>',
duration: 123,
off_peak: true,
watermark: true,
resolution: '<string>',
wm_position: '<string>',
aspect_ratio: '<string>'
})
};
fetch('https://api.ppio.com/v3/async/vidu-q3-pro-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-pro-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' => '<string>',
'style' => '<string>',
'images' => [
'<string>'
],
'is_rec' => true,
'prompt' => '<string>',
'wm_url' => '<string>',
'duration' => 123,
'off_peak' => true,
'watermark' => true,
'resolution' => '<string>',
'wm_position' => '<string>',
'aspect_ratio' => '<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-pro-i2v"
payload := strings.NewReader("{\n \"seed\": 123,\n \"audio\": \"<string>\",\n \"style\": \"<string>\",\n \"images\": [\n \"<string>\"\n ],\n \"is_rec\": true,\n \"prompt\": \"<string>\",\n \"wm_url\": \"<string>\",\n \"duration\": 123,\n \"off_peak\": true,\n \"watermark\": true,\n \"resolution\": \"<string>\",\n \"wm_position\": \"<string>\",\n \"aspect_ratio\": \"<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-pro-i2v")
.header("Content-Type", "<content-type>")
.header("Authorization", "<authorization>")
.body("{\n \"seed\": 123,\n \"audio\": \"<string>\",\n \"style\": \"<string>\",\n \"images\": [\n \"<string>\"\n ],\n \"is_rec\": true,\n \"prompt\": \"<string>\",\n \"wm_url\": \"<string>\",\n \"duration\": 123,\n \"off_peak\": true,\n \"watermark\": true,\n \"resolution\": \"<string>\",\n \"wm_position\": \"<string>\",\n \"aspect_ratio\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ppio.com/v3/async/vidu-q3-pro-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\": \"<string>\",\n \"style\": \"<string>\",\n \"images\": [\n \"<string>\"\n ],\n \"is_rec\": true,\n \"prompt\": \"<string>\",\n \"wm_url\": \"<string>\",\n \"duration\": 123,\n \"off_peak\": true,\n \"watermark\": true,\n \"resolution\": \"<string>\",\n \"wm_position\": \"<string>\",\n \"aspect_ratio\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"task_id": "<string>"
}Vidu Q3 Pro 图像转视频工具可将静态图像转换为动态视频,在保持主体一致性的同时,生成自然运动与更流畅的场景动态效果。
这是一个异步API,只会返回异步任务的 task_id。您应该使用该 task_id 请求 查询任务结果 API 来检索视频生成结果。
请求头
枚举值:
application/jsonBearer 身份验证格式,例如:Bearer {{API 密钥}}。
请求体
随机种子,用于可重复生成;0 或不传则随机生成取值范围:[0, 2147483647]
视频背景音乐的自定义音频URL;支持 mp3、wav、m4a、flac 格式;最大 20MB
输出视觉风格;general 为写实风格,anime 为动漫风格可选值:
general, anime参考图片 URL 数组;支持
.jpg、.jpeg、.png、.webp。
每张图片大小不超过 50MB;宽高比需在 1:4 与 4:1 之间。目前只支持输入 1 张图。启用音画匹配;设为 true 时,音频节奏与视频动态同步
视频生成的运动描述;描述场景运动、动作和动态效果。长度限制:0 - 1500
自定义水印图片URL;支持 png、jpeg、jpg、webp 格式;最大 10MB
视频时长(秒)取值范围:[1, 16]
使用非高峰时段定价;设为 true 时,任务排队等待非高峰时段处理以降低成本
在输出视频上启用水印
输出视频分辨率可选值:
540p, 720p, 1080p水印在视频上的位置可选值:
top-left, top-right, bottom-left, bottom-right输出视频宽高比可选值:
16:9, 9:16, 4:3, 3:4, 1:1响应
异步任务的 task_id。您应该使用该 task_id 请求 查询任务结果 API 以获取生成结果
最后修改于 2026年7月3日
⌘I