본문으로 건너뛰기
버전: 1.4.x

크로마키 내보내기


크로마키 내보내기 섹션은 AI 모델만 포함된 크로마키 비디오를 내보내기 위해 JSON 형식으로 API 요청을 보내는 방법을 보여줍니다.

1. API endpoint

https://app.deepbrain.io/api/odin/v3/simple/video

2. Request parameter

keydesctyperequireddefault
language작성한 스크립트의 언어Stringtrue-
text모델이 발화할 스크립트. 모델의 언어와 일치해야함.Stringtrue-
model사용할 모델의 IDStringtrue-
clothes모델의 복장 IDStringtrue-
ttsType모델의 기본 음성이 아닌 외부 TTS 정보Jsonfalse-
webhookUrl합성 결과를 보내줄 주소Stringfalse-

3. Response parameters

keydesctype
projectId내보내기 요청을 한 크로마키의 프로젝트 IDString

4. Sample Request

curl https://app.deepbrain.io/api/odin/v3/simple/video  \
-H "Authorization: ${API KEY}" \
-H "Content-Type: application/json" \
-X POST \
-d '{
"language": "en",
"text": "Sample Script",
"model": "M000045058",
"clothes": "BG00002320",
"webhookUrl": ${webhook_delivery_address}
}'