- 系统介绍
- 系统优势
- 补充说明
- 辅助功能
- 按量计费
- 按次计费
- OpenMeta
- GPT 4o Image Generation
- Midjourney Proxy
- Midjourney Chat
- 即梦AI2.0生图
- Recraft Proxy
- Flux.1 Proxy
- SD Proxy
- SD Chat
- 可灵AI
- 谷歌Veo3 视频生成
- Runway-视频生成
- CogVideoX Proxy
- Runway Chat
- Luma Proxy
- Luma Chat
- Pika1.5 Proxy
- Pika1.5 Chat
- Domo Proxy
- 海绵音乐(音乐生成)
- Suno Proxy
- Suno Chat
- Udio Proxy
- Udio Chat
创建多图参考生视频任务
开发环境
https://draw.openai-next.com
开发环境
https://draw.openai-next.com
POST
https://draw.openai-next.com
多图参考生视频
请求参数
Body 参数application/json
model_name
enum<string>
可选
枚举值:
kling-v1-6
默认值:
kling-v1-6
image_list
array [object {1}]
必需
>= 1 items<= 4 items
image
string
必需
prompt
string
正向文本提示词
<= 2500 字符
negative_prompt
string
负向文本提示词
<= 2500 字符
mode
enum<string>
生成模式
枚举值:
stdpro
默认值:
std
duration
enum<string>
视频时长(秒)
枚举值:
510
默认值:
5
aspect_ratio
enum<string>
视频纵横比
枚举值:
16:99:161:1
默认值:
16:9
callback_url
string <uri>
任务结果回调地址
external_task_id
string
自定义任务ID
示例
{
"image_list": [
{
"image": "https://example.com/image1.jpg"
},
{
"image": "https://example.com/image2.jpg"
}
],
"prompt": "根据参考图片生成连贯的动作视频",
"mode": "std",
"duration": "5"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://draw.openai-next.com/kling/v1/videos/multi-image2video' \
--header 'Content-Type: application/json' \
--data-raw '{
"image_list": [
{
"image": "https://example.com/image1.jpg"
},
{
"image": "https://example.com/image2.jpg"
}
],
"prompt": "根据参考图片生成连贯的动作视频",
"mode": "std",
"duration": "5"
}'
返回响应
🟢200成功
application/json
Body
code
integer
错误码
message
string
错误信息
request_id
string
请求ID
data
object
可选
task_id
string
任务ID
task_info
object
可选
task_status
string
任务状态
created_at
integer
任务创建时间
updated_at
integer
任务更新时间
示例
{
"code": 0,
"message": "string",
"request_id": "string",
"data": {
"task_id": "string",
"task_info": {
"external_task_id": "string"
},
"task_status": "string",
"created_at": 0,
"updated_at": 0
}
}