pika视频调整(修改区域)*
POST
https://openapi.w8x.cn/api/pika/adjust使用修复功能修改现有视频的某个区域,视频链接是pika原视频链接
Request Body
请求体
参数 | 类型 | 必需 | 描述 |
---|---|---|---|
promptText | text | 否 | 上一个视频的提示。您可以使用Get Job端点获取它。可以在job.params.promptText中找到 |
options | Options | 是 | 上一个视频的选项。您可以使用Get Job端点获取它。可以在job.params.options中找到 |
video | text | 是 | 您想要编辑的视频的URL。您可以使用Get Job端点获取它。可以在videos[0].resultUrl中找到 |
mode | text | 是 | 必须是inpainting |
area | Area | 是 | 您想要调整的视频区域 介绍文档看参数说明 |
style | text | 否 | 其中之一:'动漫'、'忧郁'、'3D'、'水彩'、'自然'、'白描'、'黑白' |
ref | text | 否 | 您可以附加到完成的参考 |
webhookOverride | text | 否 | 用于覆盖默认Webhook的Webhook URL |
请求参数
Body 参数application/json
promptText
string
必需
video
string
必需
the url of the video you want to inpaint
mode
string
必需
area
object
必需
x
integer
必需
y
integer
必需
height
integer
必需
width
integer
必需
options
object
必需
aspectRatio
string
必需
frameRate
integer
必需
camera
object
必需
parameters
object
必需
extend
boolean
必需
key
string
必需
示例
{
"key":"你的key",
"promptText": "your old prompt or a new prompt",
"video": "your-url-here", //the url of the video you want to inpaint
"mode": "inpainting",
"area": {
"x": 80,
"y": 80,
"height": 20,
"width": 20
},
"options": {
"aspectRatio": "5:2",
"frameRate": 20,
"camera": {
"pan": "right",
"tilt": "up",
"rotate": "cw",
"zoom": "in"
},
"parameters": {
"guidanceScale": 16,
"motion": 2,
"negativePrompt": "ugly",
"seed": 144124
},
"extend": false
}
}
示例代码
返回响应
成功(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": "a602bb11-9c52-459d-bdd6-6666c5e03ca6",
"adjusted": true,
"accountId": "z123I5GukOugL1vcG2Mf",
"extended": 0,
"pikaJobId": "a602bb11-9c52-459d-bdd6-6666c5e03ca6",
"params": {
"mode": "inpainting",
"options": {
"aspectRatio": "16:9",
"frameRate": 24,
"camera": {
"rotate": null,
"zoom": null,
"tilt": null,
"pan": null
},
"parameters": {
"motion": 1,
"guidanceScale": 12,
"negativePrompt": "",
"seed": 144124
}
},
"userId": "92b68ee2-a71d-4500-1234-4eea210d0cac",
"promptText": "people on the moon",
"area": {
"x": 80,
"y": 80,
"width": 20,
"height": 20
},
"mask": null,
"video": "https://example.video/cc81fd6034c6c69a324b0162e9364427083975e46e6298b3a1b.mp4"
},
"promptText": "people on the moon",
"requestType": "generate",
"upscaled": false,
"createdAt": {}
},
"video": {
"accountId": "z123I5GukOugL1vcG2Mf",
"id": "a602bb11-9c52-459d-bdd6-6666c5e03ca6",
"jobId": "a602bb11-9c52-459d-bdd6-6666c5e03ca6",
"status": "queued",
"pikaVideoId": "a602bb11-9c52-459d-bdd6-6666c5e03ca6"
}
},
"exec_time": 1.378803,
"ip": ""
}
最后修改时间: 7 个月前