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

AI더빙 내보내기

동영상을 원하는 언어로 변환해보세요! 파일을 업로드하면, 선택한 언어로 번역된 음성 더빙과 정밀한 립싱크가 제공되며, 진행 상황도 실시간으로 확인할 수 있습니다. (중국은 추후 제공될 예정 입니다)


1. 파일 업로드 및 더빙 요청

1-1. API endpoint

https://app.aistudios.com/api/odin/v3/automation/translatevideos

1-2. Request parameter

keydesctyperequireddefault
file번역할 영상Filetrue-
original번역할 영상의 원어Stringfalseauto
originalSrt번역할 영상의 원어 자막파일Filefalse-
target_[0, …, 9]대상 언어 코드, 최대 10개 허용Stringtrue-
targetSrt_[0, …, 9]대상 자막파일, 최대 10개 허용Filefalse-
isDubbingOnly음성전용더빙Booleanfalsefalse
isRemoveBGMBGM제거Booleanfalsefalse
isCaptionFileAdd SubtitleBooleanfalsefalse
numberOfSpeakers발언자수, 최대 5Stringfalseauto

1-3. Language Code

LanguageCode
Englishen-US
Hindihi-IN
Portuguesept-PT
Chinesezh-CN
Spanishes-ES
Frenchfr-FR
Germande-DE
Japaneseja-JP
Arabicar-SA
Russianru-RU
Koreanko-KR
Indonesianid-ID
Italianit-IT
Dutchnl-NL
Turkishtr-TR
Polishpl-PL
Swedishsv-SE
Filipinofil-PH
Malayms-MY
Romanianro-RO
Ukrainianuk-UA
Greekel-GR
Czechcs-CZ
Danishda-DK
Finnishfi-FI
Bulgarianbg-BG
Croatianhr-HR
Slovaksk-SK
Tamilta-IN
Vietnamesevi-VN

1-4. Response parameters

keydesctype
folderId내보내기 요청을 한 folderIdString

1-5. Sample Request

curl https://app.aistudios.com/api/odin/v3/automation/translatevideos  \
-H "Authorization: ${API KEY}" \
-H "Content-Type: application/json" \
-X POST \
-F "file=@'${LOCAL FILE PATH}'" \
-F "target_0='en-US'"
-F "target_1='ko-KR'"
-F "target_2='ja-JP'"

2. 진행상항 확인

2-1. API endpoint

https://app.aistudios.com/api/odin/v3/automation/translatevideos?folderId=${folderId}

2-2. Response parameters

keydesctype
projectId프로젝트 IDString
name프로젝트 제목String
progress합성진행률Float
download_url합성완료된 비디오의 다운로드 URLString

2-3. Sample Request

curl https://app.aistudios.com/api/odin/v3/automation/translatevideos?folderId=${folderId}  \
-H "Authorization: ${API KEY}" \
-H "Content-Type: application/json" \
-X GET