Skip to content

功能描述

如果不想主动轮询,而是想通过接口回调的方式获取最终的结果

回调的固定路径是 /job/compile/complete ,例如提供的回调前缀是 http://demo.com/prefix/,那么实际回调的地址是 http://demo.com/prefix/job/compile/complete

请求

plain
POST /job/compile/complete 
Content-Type: application/json
json
{
	"uuid": "2025042501",
	"type": 1,
	"data": {
		"code": 0,
		"message": "success",
		"duration": 15000000,
		"url": "https://wslfile/tmptest/2025/04/25/video-compiled/2025042501/2025042501.mp4",
		"width": 1080,
		"height": 1920,
    "coverUrl":"https://xxxxxx.demo.com/xxxx.jpg",
    "fileSize":15000000
	}
}
字段类型描述必填
uuidstring对应taskId
typeint对应任务类型,合成任务为1
dataobject返回的数据体
codeint任务的执行结果
0成功
其他失败
messagestring任务的执行结果信息
durationlong视频时长,单位微秒
urlstring视频的url连接
widthint视频的宽度
heightint视频的高度
coverUrlstring封面的url地址
fileSizelong视频文件大小, 单位 byte

响应

响应体

不关注响应码和响应体,如果链接出现错误的话,会等待5秒后重试,最多重试3次,每次超时时间为10秒。