fix: 提取视频配音 API 路径修正为 /voices/extract-voice #1665

Merged
xiaoxia merged 1 commits from fix/extract-voice-api-path into develop 2026-09-03 20:49:16 +08:00
+1 -1
View File
@@ -84,7 +84,7 @@ export const extractVideoVoice = async (
return new Promise((resolve, reject) => {
const xhr = new XMLHttpRequest()
xhr.open("POST", "/api/v1/tts/extract-video-voice")
xhr.open("POST", "/api/v1/voices/extract-voice")
// 携带认证 token(从 localStorage 获取,与 apiClient 拦截器一致)
const token = localStorage.getItem("access_token")