Extend(视频扩展)
POST
/luma/extend/{id}来自于Luma AI的文/图生视频。这个API用于对之前生成的视频进行扩展,可增加5秒的播放时长。
注意:由于官方并不支持视频扩展设置首尾帧,所以扩展出来的内容比较不可控。我们更建议使用submit接口,将前一个视频的尾帧传进去,进行生成,再后期自己拼接。
官方网站:https://lumalabs.ai/dream-machine
价格:0.4 PTC/次
请求参数
Path 参数
id
string
必需
之前视频返回的id,以luma_开头
Header 参数
Content-Type
string
必需
302.AI后台的API Key
示例值:
application/json
Authorization
string
必需
示例值:
Bearer {{YOUR_API_KEY}}
Body 参数multipart/form-data
user_prompt
string
视频提示词
示例值:
Low-angle shot of a majestic tiger prowling through a snowy landscape, leaving paw prints on the white blanket
image_url
file
可选
视频的首帧,建议不传。如果传最好传需要扩展的视频最后一帧,保持画面连贯性。
image_end_url
file
可选
视频的尾帧,建议不传。如果传必须和首帧一样,因为extend咱不支持首尾帧生成,如果图片不同会报错。建议通过submit接口传首尾帧,后期自己拼接。
示例代码
返回响应
OK(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
created_at
string
必需
estimate_wait_seconds
null
必需
id
string
必需
liked
null
必需
prompt
string
必需
state
string
必需
video
null
必需
示例
{
"created_at": "",
"estimate_wait_seconds": null,
"id": "",
"liked": null,
"prompt": "",
"state": "",
"video": null
}
最后修改时间: 4 个月前