特效模板创建任务
▼
Authorization
在 Header 添加参数 Authorization,其值为 Bearer 之后拼接 Token
示例:
Authorization: Bearer ********************
官方文档:https://cloud.tencent.com/document/product/266/126240
请求参数
Body 参数 application/json
scene_type
string
必需
取值 template_effect
prompt
string
可选
提示词
file_infos
object
可选
最多包含三张素材资源图片的列表,用于描述模型在生成视频时要使用的资源图片。 注意: 1. 图片大小不超过10M。 2. 支持的图片格式:jpeg、png。
type
string
可选
输入的视频文件类型。取值有: File:点播媒体文件; Url:可访问的 URL; 示例值:File
category
string
可选
文件分类。取值为: Image: 图片; Video: 视频。 示例值:Image
file_id
string
可选
图片文件的媒体文件 ID,即该文件在云点播上的全局唯一标识符,在上传成功后由云点播后台分配。可以在 视频上传完成事件通知 或 云点播控制台 获取该字段。当 Type 取值为 File 时,本参数有效。 说明: 1. 推荐使用小于7M的图片; 2. 图片格式的取值为:jpeg,jpg, png, webp。 示例值:3704211***509819
url
string
可选
可访问的文件 URL。当 Type 取值为 Url 时,本参数有效。 说明: 1. 推荐使用小于7M的图片; 2. 图片格式的取值为:jpeg,jpg, png, webp。 示例值:https://test.com/1.png
ext_info
object
必需
AdditionalParameters
object
必需
示例
{
"scene_type": "template_effect",
"prompt": "视频内容\\n画面开始主体突然爆炸,细碎的颗粒爆炸开来\\n# 要求\\n1.根据用户上传图片确定主体数量,每个主体都要爆炸\\n2.Motion Level 设定为:Middle\\n3.以>我的视频内容为第一要素,背景的描述统一、合理,不要描述两次.",
"file_infos": [
{
"type": "Url",
"category": "Image",
"url": "https://image01.vidu.zone/vidu/example/20241206-175531.jpeg"
}
],
"ext_info": {
"AdditionalParameters": {
"template": "morphlab"
}
}
}
请求示例代码
curl --location --request POST 'https://api.quickrouter.ai/tencent-vod/v1/template-effect' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data-raw '{
"scene_type": "template_effect",
"prompt": "视频内容\n画面开始主体突然爆炸,细碎的颗粒爆炸开来\n# 要求\n1.根据用户上传图片确定主体数量,每个主体都要爆炸\n2.Motion Level 设定为:Middle\n3.以>我的视频内容为第一要素,背景的描述统一、合理,不要描述两次.",
"file_infos": [
{
"type": "Url",
"category": "Image",
"url": "https://image01.vidu.zone/vidu/example/20241206-175531.jpeg"
}
],
"ext_info": {
"AdditionalParameters": {
"template": "morphlab"
}
}
}'
var myHeaders = new Headers();
myHeaders.append("Accept", "application/json");
myHeaders.append("Authorization", "Bearer YOUR_API_KEY");
myHeaders.append("Content-Type", "application/json");
var raw = JSON.stringify({
"scene_type": "template_effect",
"prompt": "视频内容\n画面开始主体突然爆炸,细碎的颗粒爆炸开来\n# 要求\n1.根据用户上传图片确定主体数量,每个主体都要爆炸\n2.Motion Level 设定为:Middle\n3.以>我的视频内容为第一要素,背景的描述统一、合理,不要描述两次.",
"file_infos": [
{
"type": "Url",
"category": "Image",
"url": "https://image01.vidu.zone/vidu/example/20241206-175531.jpeg"
}
],
"ext_info": {
"AdditionalParameters": {
"template": "morphlab"
}
}
});
var requestOptions = {
method: 'POST',
headers: myHeaders,
body: raw,
redirect: 'follow'
};
fetch("https://api.quickrouter.ai/tencent-vod/v1/template-effect", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));
import java.io.*;
import java.net.*;
import java.util.*;
URL url = new URL("https://api.quickrouter.ai/tencent-vod/v1/template-effect");
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("POST");
conn.setRequestProperty("Accept", "application/json");
conn.setRequestProperty("Authorization", "Bearer YOUR_API_KEY");
conn.setRequestProperty("Content-Type", "application/json");
conn.setDoOutput(true);
String jsonInputString = "{
\"scene_type\": \"template_effect\",
\"prompt\": \"视频内容\\n画面开始主体突然爆炸,细碎的颗粒爆炸开来\\n# 要求\\n1.根据用户上传图片确定主体数量,每个主体都要爆炸\\n2.Motion Level 设定为:Middle\\n3.以>我的视频内容为第一要素,背景的描述统一、合理,不要描述两次.\",
\"file_infos\": [
{
\"type\": \"Url\",
\"category\": \"Image\",
\"url\": \"https://image01.vidu.zone/vidu/example/20241206-175531.jpeg\"
}
],
\"ext_info\": {
\"AdditionalParameters\": {
\"template\": \"morphlab\"
}
}
}";
try(OutputStream os = conn.getOutputStream()) {
byte[] input = jsonInputString.getBytes("utf-8");
os.write(input, 0, input.length);
}
int responseCode = conn.getResponseCode();
System.out.println("Response Code: " + responseCode);
import Foundation
let urlString = "https://api.quickrouter.ai/tencent-vod/v1/template-effect"
guard let url = URL(string: urlString) else { return }
var request = URLRequest(url: url)
request.httpMethod = "POST"
request.addValue("application/json", forHTTPHeaderField: "Accept")
request.addValue("Bearer YOUR_API_KEY", forHTTPHeaderField: "Authorization")
request.addValue("application/json", forHTTPHeaderField: "Content-Type")
let httpBody = "{
\"scene_type\": \"template_effect\",
\"prompt\": \"视频内容\\n画面开始主体突然爆炸,细碎的颗粒爆炸开来\\n# 要求\\n1.根据用户上传图片确定主体数量,每个主体都要爆炸\\n2.Motion Level 设定为:Middle\\n3.以>我的视频内容为第一要素,背景的描述统一、合理,不要描述两次.\",
\"file_infos\": [
{
\"type\": \"Url\",
\"category\": \"Image\",
\"url\": \"https://image01.vidu.zone/vidu/example/20241206-175531.jpeg\"
}
],
\"ext_info\": {
\"AdditionalParameters\": {
\"template\": \"morphlab\"
}
}
}"
request.httpBody = httpBody.data(using: .utf8)
let task = URLSession.shared.dataTask(with: request) { data, response, error in
if let data = data {
print(String(data: data, encoding: .utf8)!)
}
}
task.resume()
package main
import (
"fmt"
"io"
"net/http"
)
func main() {
body := strings.NewReader(`{
"scene_type": "template_effect",
"prompt": "视频内容\n画面开始主体突然爆炸,细碎的颗粒爆炸开来\n# 要求\n1.根据用户上传图片确定主体数量,每个主体都要爆炸\n2.Motion Level 设定为:Middle\n3.以>我的视频内容为第一要素,背景的描述统一、合理,不要描述两次.",
"file_infos": [
{
"type": "Url",
"category": "Image",
"url": "https://image01.vidu.zone/vidu/example/20241206-175531.jpeg"
}
],
"ext_info": {
"AdditionalParameters": {
"template": "morphlab"
}
}
}`)
req, _ := http.NewRequest("POST", "https://api.quickrouter.ai/tencent-vod/v1/template-effect", body)
req.Header.Set("Accept", "application/json")
req.Header.Set("Authorization", "Bearer YOUR_API_KEY")
req.Header.Set("Content-Type", "application/json")
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
bodyBytes, _ := io.ReadAll(resp.Body)
fmt.Println(string(bodyBytes))
}
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://api.quickrouter.ai/tencent-vod/v1/template-effect',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS => '{
"scene_type": "template_effect",
"prompt": "视频内容\n画面开始主体突然爆炸,细碎的颗粒爆炸开来\n# 要求\n1.根据用户上传图片确定主体数量,每个主体都要爆炸\n2.Motion Level 设定为:Middle\n3.以>我的视频内容为第一要素,背景的描述统一、合理,不要描述两次.",
"file_infos": [
{
"type": "Url",
"category": "Image",
"url": "https://image01.vidu.zone/vidu/example/20241206-175531.jpeg"
}
],
"ext_info": {
"AdditionalParameters": {
"template": "morphlab"
}
}
}',
CURLOPT_HTTPHEADER => array(
"Accept: application/json",
"Authorization: Bearer YOUR_API_KEY",
"Content-Type: application/json",
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
import http.client
import json
conn = http.client.HTTPSConnection("api.quickrouter.ai")
payload = json.dumps({
"scene_type": "template_effect",
"prompt": "视频内容\n画面开始主体突然爆炸,细碎的颗粒爆炸开来\n# 要求\n1.根据用户上传图片确定主体数量,每个主体都要爆炸\n2.Motion Level 设定为:Middle\n3.以>我的视频内容为第一要素,背景的描述统一、合理,不要描述两次.",
"file_infos": [
{
"type": "Url",
"category": "Image",
"url": "https://image01.vidu.zone/vidu/example/20241206-175531.jpeg"
}
],
"ext_info": {
"AdditionalParameters": {
"template": "morphlab"
}
}
})
headers = {
'Accept': 'application/json',
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json',
}
conn.request("POST", "/tencent-vod/v1/template-effect", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
POST https://api.quickrouter.ai/tencent-vod/v1/template-effect HTTP/1.1
Accept: application/json
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json
{
"scene_type": "template_effect",
"prompt": "视频内容\n画面开始主体突然爆炸,细碎的颗粒爆炸开来\n# 要求\n1.根据用户上传图片确定主体数量,每个主体都要爆炸\n2.Motion Level 设定为:Middle\n3.以>我的视频内容为第一要素,背景的描述统一、合理,不要描述两次.",
"file_infos": [
{
"type": "Url",
"category": "Image",
"url": "https://image01.vidu.zone/vidu/example/20241206-175531.jpeg"
}
],
"ext_info": {
"AdditionalParameters": {
"template": "morphlab"
}
}
}
CURL *hnd = curl_easy_init();
curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "POST");
curl_easy_setopt(hnd, CURLOPT_URL, "https://api.quickrouter.ai/tencent-vod/v1/template-effect");
struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "Accept: application/json");
headers = curl_slist_append(headers, "Authorization: Bearer YOUR_API_KEY");
headers = curl_slist_append(headers, "Content-Type: application/json");
curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);
curl_easy_setopt(hnd, CURLOPT_POSTFIELDS, "{
\"scene_type\": \"template_effect\",
\"prompt\": \"视频内容\\n画面开始主体突然爆炸,细碎的颗粒爆炸开来\\n# 要求\\n1.根据用户上传图片确定主体数量,每个主体都要爆炸\\n2.Motion Level 设定为:Middle\\n3.以>我的视频内容为第一要素,背景的描述统一、合理,不要描述两次.\",
\"file_infos\": [
{
\"type\": \"Url\",
\"category\": \"Image\",
\"url\": \"https://image01.vidu.zone/vidu/example/20241206-175531.jpeg\"
}
],
\"ext_info\": {
\"AdditionalParameters\": {
\"template\": \"morphlab\"
}
}
}");
CURLcode ret = curl_easy_perform(hnd);
var client = new RestClient("https://api.quickrouter.ai/tencent-vod/v1/template-effect");
var request = new RestRequest(Method.POST);
request.AddHeader("Accept", "application/json");
request.AddHeader("Authorization", "Bearer YOUR_API_KEY");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", @"{
"scene_type": "template_effect",
"prompt": "视频内容\n画面开始主体突然爆炸,细碎的颗粒爆炸开来\n# 要求\n1.根据用户上传图片确定主体数量,每个主体都要爆炸\n2.Motion Level 设定为:Middle\n3.以>我的视频内容为第一要素,背景的描述统一、合理,不要描述两次.",
"file_infos": [
{
"type": "Url",
"category": "Image",
"url": "https://image01.vidu.zone/vidu/example/20241206-175531.jpeg"
}
],
"ext_info": {
"AdditionalParameters": {
"template": "morphlab"
}
}
}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);
#import <Foundation/Foundation.h>
NSURL *url = [NSURL URLWithString:@"https://api.quickrouter.ai/tencent-vod/v1/template-effect"];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
[request setHTTPMethod:@"POST"];
[request setValue:@"application/json" forHTTPHeaderField:@"Accept"];
[request setValue:@"Bearer YOUR_API_KEY" forHTTPHeaderField:@"Authorization"];
[request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
[request setHTTPBody:[@"{
\"scene_type\": \"template_effect\",
\"prompt\": \"视频内容\\n画面开始主体突然爆炸,细碎的颗粒爆炸开来\\n# 要求\\n1.根据用户上传图片确定主体数量,每个主体都要爆炸\\n2.Motion Level 设定为:Middle\\n3.以>我的视频内容为第一要素,背景的描述统一、合理,不要描述两次.\",
\"file_infos\": [
{
\"type\": \"Url\",
\"category\": \"Image\",
\"url\": \"https://image01.vidu.zone/vidu/example/20241206-175531.jpeg\"
}
],
\"ext_info\": {
\"AdditionalParameters\": {
\"template\": \"morphlab\"
}
}
}" dataUsingEncoding:NSUTF8StringEncoding]];
NSURLSessionDataTask *task = [[NSURLSession sharedSession] dataTaskWithRequest:request completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
NSLog(@"%@", [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]);
}];
[task resume];
require "uri"
require "net/http"
require "json"
url = URI("https://api.quickrouter.ai/tencent-vod/v1/template-effect")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Accept"] = "application/json"
request["Authorization"] = "Bearer YOUR_API_KEY"
request["Content-Type"] = "application/json"
request.body = '{
"scene_type": "template_effect",
"prompt": "视频内容\n画面开始主体突然爆炸,细碎的颗粒爆炸开来\n# 要求\n1.根据用户上传图片确定主体数量,每个主体都要爆炸\n2.Motion Level 设定为:Middle\n3.以>我的视频内容为第一要素,背景的描述统一、合理,不要描述两次.",
"file_infos": [
{
"type": "Url",
"category": "Image",
"url": "https://image01.vidu.zone/vidu/example/20241206-175531.jpeg"
}
],
"ext_info": {
"AdditionalParameters": {
"template": "morphlab"
}
}
}'
response = http.request(request)
puts response.read_body
(* Requires cohttp and lwt *)
let url = "https://api.quickrouter.ai/tencent-vod/v1/template-effect" in
let headers = Cohttp.Header.of_list [
("Accept", "application/json");
("Authorization", "Bearer YOUR_API_KEY");
("Content-Type", "application/json");
] in
let body = Cohttp_lwt.Body.of_string '{
"scene_type": "template_effect",
"prompt": "视频内容\n画面开始主体突然爆炸,细碎的颗粒爆炸开来\n# 要求\n1.根据用户上传图片确定主体数量,每个主体都要爆炸\n2.Motion Level 设定为:Middle\n3.以>我的视频内容为第一要素,背景的描述统一、合理,不要描述两次.",
"file_infos": [
{
"type": "Url",
"category": "Image",
"url": "https://image01.vidu.zone/vidu/example/20241206-175531.jpeg"
}
],
"ext_info": {
"AdditionalParameters": {
"template": "morphlab"
}
}
}' in
Lwt_main.run (
Cohttp_lwt_unix.Client.request ?body:(Some body) ~method_:`POST ~headers (Uri.of_string url)
>>= fun (resp, body) ->
Cohttp_lwt.Body.to_string body >|= fun s -> print_endline s
)
import 'package:http/http.dart' as http;
import 'dart:convert';
var headers = {
"Accept": "application/json",
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json",
};
var body = json.encode({
"scene_type": "template_effect",
"prompt": "视频内容\n画面开始主体突然爆炸,细碎的颗粒爆炸开来\n# 要求\n1.根据用户上传图片确定主体数量,每个主体都要爆炸\n2.Motion Level 设定为:Middle\n3.以>我的视频内容为第一要素,背景的描述统一、合理,不要描述两次.",
"file_infos": [
{
"type": "Url",
"category": "Image",
"url": "https://image01.vidu.zone/vidu/example/20241206-175531.jpeg"
}
],
"ext_info": {
"AdditionalParameters": {
"template": "morphlab"
}
}
});
var response = await http.post(Uri.parse("https://api.quickrouter.ai/tencent-vod/v1/template-effect"), headers: headers, body: body);
print(response.body);
library(httr)
url <- "https://api.quickrouter.ai/tencent-vod/v1/template-effect"
body <- '{
"scene_type": "template_effect",
"prompt": "视频内容\n画面开始主体突然爆炸,细碎的颗粒爆炸开来\n# 要求\n1.根据用户上传图片确定主体数量,每个主体都要爆炸\n2.Motion Level 设定为:Middle\n3.以>我的视频内容为第一要素,背景的描述统一、合理,不要描述两次.",
"file_infos": [
{
"type": "Url",
"category": "Image",
"url": "https://image01.vidu.zone/vidu/example/20241206-175531.jpeg"
}
],
"ext_info": {
"AdditionalParameters": {
"template": "morphlab"
}
}
}'
response <- post(url, body = body, add_headers("Accept" = "application/json", "Authorization" = "Bearer YOUR_API_KEY", "Content-Type" = "application/json"))
content(response, "text", encoding = "UTF-8")
返回响应
响应参数 🟢 200 OK · application/json
object
可选
示例
{
"Response": {
"TaskId": "251007502-AigcImage***2782aff1e896673f1ft",
"RequestId": "f50d7667-72d8-46bb-a7e3-0613588971b6"
}
}