네이티브 동기화 오디오를 갖춘 ByteDance의 차세대 멀티모달 비디오 모델입니다. 최대 9장의 레퍼런스 이미지, 3개의 비디오, 3개의 오디오를 한 번의 생성에 조합하여 캐릭터 일관성과 립싱크를 유지하는 비디오 생성·편집·확장을 지원합니다.
콘솔의 Playground에서 별도 코드 없이 이 모델을 즉시 테스트할 수 있어요
이 모델의 사용법을 Claude, ChatGPT 등에 복사
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "bytedance/seedance-2.0",
"input": {
"prompt": "A cozy cabin in a snowy forest at night, warm light glowing from the windows, gentle snowfall, camera slowly pushing in through the trees",
"duration": 7,
"resolution": "720p",
"aspect_ratio": "16:9",
"generate_audio": true
}
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
prompt | string | Yes | - | 텍스트 프롬프트 (최대 4000자). 대사는 큰따옴표로, 레퍼런스는 [Image1], [Video1], [Audio1]로 참조 |
image | string | No | - | 이미지-비디오 변환용 첫 프레임 이미지 (레퍼런스 이미지와 병용 불가) |
last_frame_image | string | No | - | 마지막 프레임 이미지 (첫 프레임 이미지 필요) |
reference_images | array | No | [] | 캐릭터·스타일 일관성을 위한 레퍼런스 이미지 (최대 9장) |
reference_videos | array | No | [] | 모션 전이·편집용 레퍼런스 비디오 (최대 3개, 합계 15초 이하). 사용 시 초당 가격 약 25% 상승 |
reference_audios | array | No | [] | 오디오 기반 생성·립싱크용 레퍼런스 오디오 (최대 3개, 합계 15초 이하) |
duration | integer | No | 5 | 비디오 길이 초 (1~15). 출력 초당 과금 |
resolution | string | No | 720p | 비디오 해상도. 4K는 10-bit H.265/HEVC로 출력 480p720p1080p4k |
aspect_ratio | string | No | 16:9 | 화면 비율. 'adaptive'는 입력에 맞춰 모델이 자동 선택 16:94:31:13:49:1621:99:21adaptive |
generate_audio | boolean | No | true | 동기화 오디오 생성 (대사, 효과음, 배경음악) |
seed | integer | No | - | 재현 가능한 생성을 위한 랜덤 시드 |
이 모델의 imagelast_frame_imagereference_imagesreference_videosreference_audios 파라미터에 파일을 전달하는 방법은 3가지입니다.
POST /v1/predictions/upload에 파일을 직접 첨부합니다. 별도 업로드 과정이 필요 없습니다.
curl -X POST "https://api.core.today/v1/predictions/upload" \
-H "X-API-Key: cdt_your_api_key" \
-F "model=bytedance/seedance-2.0" \
-F 'input={"prompt":"your prompt here"}' \
-F "file:image=@your_file.png"공개 접근 가능한 URL을 직접 전달합니다. Storage API로 업로드한 파일의 file_url도 사용 가능합니다.
{
"model": "bytedance/seedance-2.0",
"input": {
"prompt": "your prompt here",
"image": "https://example.com/image.jpg"
}
}POST /v1/predictions 요청 시 사용되는 공통 파라미터입니다.
| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
model | string | Yes | - | 모델 식별자 |
input | object | Yes | - | 위 테이블의 모델별 파라미터를 포함하는 객체 |
output_folder | string | No | - | 결과물 저장 폴더 경로 (최대 256자, '..' 사용 불가) |
webhook_url | string | No | - | 완료 시 호출할 Webhook URL |
is_public | boolean | No | false | true 시 결과물을 영구 공개 URL로도 제공 |
동기화된 앰비언트 오디오와 함께 텍스트-비디오 생성
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "bytedance/seedance-2.0",
"input": {
"prompt": "A cozy cabin in a snowy forest at night, warm light glowing from the windows, gentle snowfall, camera slowly pushing in through the trees",
"duration": 7,
"resolution": "720p",
"aspect_ratio": "16:9",
"generate_audio": true
}
}'입 모양이 일치하는 대사 음성 생성
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "bytedance/seedance-2.0",
"input": {
"prompt": "An old fisherman on a pier at dawn turns to the camera and says: \"The sea gives, and the sea takes.\" Waves lap against the wooden posts",
"duration": 8,
"resolution": "720p",
"aspect_ratio": "16:9",
"generate_audio": true
}
}'