본문으로 건너뛰기
버전: 최신 버전

보이스 클론 생성

오디오를 사용하여 보이스 클론을 생성합니다.


1. API endpoint

POST https://app.aistudios.com/api/odin/v3/avatars/voiceclone

2. Request parameter

keydesctyperequireddefault
url오디오 URLStringtrue-
name보이스 클론의 이름Stringtrue-
gender보이스 클론의 성별String enum (MALE, FEMALE)true-
locale보이스 클론 샘플 보이스의 언어String enum (en, ko, zh)falseen

3. Response parameters

keydesctype
voiceId생성된 보이스 클론의 아이디String

4. Sample Request

curl https://app.aistudios.com/api/odin/v3/avatars/voiceclone  \
-H "Authorization: ${API KEY}" \
-H "Content-Type: application/json" \
-X POST \
-d '{
"url": "https://cdn-studio.aistudios.com/sample/tts/deepbrainai/en/M000351175.mp3",
"name": "이안",
"gender": "MALE"
}'