音频合成,视频合成

This commit is contained in:
ZLI263
2025-10-06 23:19:05 +08:00
parent f36fc5630c
commit 5f0d5a0daf
5 changed files with 533 additions and 731 deletions

View File

@@ -19,16 +19,15 @@ export function getFaceDetectList(params) {
/**
* 检测图片中的人脸信息
* @param {String} imageUrl 图片URL
* @param {Object} params 检测参数
* @returns {Promise}
*/
export function detectFace(imageUrl) {
export function detectFace(params) {
console.log('detectFace API 调用参数:', params)
return request({
url: '/face-detect/detect',
method: 'post',
params: {
imageUrl
}
params
})
}