pika视频生成
POST
https://openapi.w8x.cn/api/pika/generate详细配置参数值参考介绍文档
从文本和可选附件生成视频
Request Body
请求体
参数 | 类型 | 必需 | 描述 |
---|---|---|---|
promptText | text | 否 | 创建视频的文本 |
options | Options | 是 | 视频的选项 |
video | text | 否 | 用于生成视频的视频URL,必须是有效的.mp4文件 |
image | text | 否 | 用于生成视频的图像URL,必须是有效的.png、.jpeg、.webp或.gif文件 |
sfx | boolean | 否 | 如果设置为'true',则启用音效 |
style | text | 否 | 其中之一:'动漫'、'忧郁'、'3D'、'水彩'、'自然'、'白描'、'黑白',One of 'Anime', 'Moody', '3D', 'Watercolor', 'Natural', 'Claymation', 'Black & white' |
ref | text | 否 | 您可以附加到完成的参考 |
webhookOverride | text | 否 | 用于覆盖默认Webhook的Webhook URL |
请求参数
Body 参数application/json
key
string
必需
promptText
string
关键词
options
object
必需
aspectRatio
string
比例
frameRate
integer
帧率
camera
object
镜头控制
parameters
object
必需
webhookOverride
string
回调地址
video
string
垫视频链接
image
string
垫图链接
style
string
风格
sfx
boolean
音效
示例
{
"key": "你的key",
"promptText": "The sea is rough.",
"options": {
"parameters": {
"motion": 2,
"guidanceScale": 12,
"negativePrompt": "排除关键词",
"seed": 7229848466499604
},
"frameRate": 24,
"aspectRatio": "16:9",
"camera": {
"pan": "left",
"tilt": "up",
"rotate": "cw",
"zoom": "in"
}
},
"webhookOverride": "回调地址",
"image": "垫图链接",
"style": "Anime",
"sfx": true
}
示例代码
返回响应
成功(200)
错误(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
必需
msg
string
必需
data
object
必需
job
object
必需
video
object
必需
exec_time
number
必需
ip
string
必需
示例
{
"code": 200,
"msg": "提交生成成功",
"data": {
"job": {
"id": "c082883e-4011-4020-928d-720364ae66e4",
"status": "queued",
"adjusted": false,
"accountId": "28ZMaFgcMmwqc6lpxyP6",
"extended": 0,
"pikaJobId": "c082883e-4011-4020-928d-720364ae66e4",
"params": {
"options": {
"aspectRatio": "5:2",
"frameRate": 20,
"camera": {
"zoom": "in",
"pan": "right",
"tilt": "up",
"rotate": "cw"
},
"parameters": {
"motion": 2,
"guidanceScale": 16,
"negativePrompt": "ugly",
"seed": 144124
},
"extend": false
},
"userId": "7cf21fe7-8113-497c-9fc4-d812371e8174",
"promptText": "customize your prompt here",
"sfx": false,
"styleId": null
},
"promptText": "customize your prompt here",
"requestType": "generate",
"upscaled": false,
"createdAt": "2024-06-27T04:17:47.099Z",
"webhookUrl": ""
},
"video": {
"accountId": "28ZMaFgcMmwqc6lpxyP6",
"id": "c082883e-4011-4020-928d-720364ae66e4",
"jobId": "c082883e-4011-4020-928d-720364ae66e4",
"status": "queued",
"pikaVideoId": "c082883e-4011-4020-928d-720364ae66e4",
"webhookUrl": ""
}
},
"exec_time": 1.378803,
"ip": "*"
}
最后修改时间: 7 个月前