头像视频合成支持动态模型

This commit is contained in:
ZLI263
2025-10-09 08:38:42 +08:00
parent 1a4a921677
commit c93cf465e8
4 changed files with 182 additions and 14 deletions

View File

@@ -42,3 +42,12 @@ export function getVideoSynthesisStatus(taskId) {
method: 'get'
})
}
// 播放视频
export function playVideo(minioPath, expires = 900) {
return request({
url: `/video-synthesis/play/${minioPath}`,
method: 'get',
params: { expires }
})
}