混剪优化

This commit is contained in:
2025-12-07 00:10:22 +08:00
parent 0fffd787bb
commit 7f7551f74f
14 changed files with 479 additions and 113 deletions

View File

@@ -65,6 +65,13 @@ export const MixTaskService = {
*/
cancelTask(id) {
return http.post(`${BASE_URL}/cancel/${id}`)
},
/**
* 获取任务输出文件的签名URL
*/
getSignedUrls(id) {
return http.get(`${BASE_URL}/signed-url/${id}`)
}
}