Skip to main content
ByteDance보통울트라

Seedance 2.0

네이티브 동기화 오디오를 갖춘 ByteDance의 차세대 멀티모달 비디오 모델입니다. 최대 9장의 레퍼런스 이미지, 3개의 비디오, 3개의 오디오를 한 번의 생성에 조합하여 캐릭터 일관성과 립싱크를 유지하는 비디오 생성·편집·확장을 지원합니다.

2090 크레딧
720p 5초 기준 — 초당 과금 (480p 186/초, 720p 419/초, 1080p 1047/초, 4K 2327/초; 레퍼런스 비디오 사용 시 480p 233/초, 720p 512/초, 1080p 1280/초, 4K 2908/초)
네이티브 오디오 생성 — 대사, 효과음, 배경음악이 영상과 동기화
멀티모달 레퍼런스 입력: 이미지 9장, 비디오 3개, 오디오 3개까지 한 번에
레퍼런스 이미지 기반 샷 간 캐릭터 일관성 유지
레퍼런스 비디오 기반 영상 편집·확장
최대 4K(10-bit H.265) 해상도, 1~15초 길이

지금 바로 실행해보세요

콘솔의 Playground에서 별도 코드 없이 이 모델을 즉시 테스트할 수 있어요

로그인 후 사용해보기

AI 어시스턴트에서 사용하기

이 모델의 사용법을 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
  }
}'

파라미터

파라미터타입필수기본값설명
promptstringYes-텍스트 프롬프트 (최대 4000자). 대사는 큰따옴표로, 레퍼런스는 [Image1], [Video1], [Audio1]로 참조
imagestringNo-이미지-비디오 변환용 첫 프레임 이미지 (레퍼런스 이미지와 병용 불가)
last_frame_imagestringNo-마지막 프레임 이미지 (첫 프레임 이미지 필요)
reference_imagesarrayNo[]캐릭터·스타일 일관성을 위한 레퍼런스 이미지 (최대 9장)
reference_videosarrayNo[]모션 전이·편집용 레퍼런스 비디오 (최대 3개, 합계 15초 이하). 사용 시 초당 가격 약 25% 상승
reference_audiosarrayNo[]오디오 기반 생성·립싱크용 레퍼런스 오디오 (최대 3개, 합계 15초 이하)
durationintegerNo5비디오 길이 초 (1~15). 출력 초당 과금
resolutionstringNo720p비디오 해상도. 4K는 10-bit H.265/HEVC로 출력
480p720p1080p4k
aspect_ratiostringNo16:9화면 비율. 'adaptive'는 입력에 맞춰 모델이 자동 선택
16:94:31:13:49:1621:99:21adaptive
generate_audiobooleanNotrue동기화 오디오 생성 (대사, 효과음, 배경음악)
seedintegerNo-재현 가능한 생성을 위한 랜덤 시드

파일 입력 방법

이 모델의 imagelast_frame_imagereference_imagesreference_videosreference_audios 파라미터에 파일을 전달하는 방법은 3가지입니다.

추천

간편 업로드 (Multipart)

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 전달

공개 접근 가능한 URL을 직접 전달합니다. Storage API로 업로드한 파일의 file_url도 사용 가능합니다.

{
  "model": "bytedance/seedance-2.0",
  "input": {
    "prompt": "your prompt here",
    "image": "https://example.com/image.jpg"
  }
}
File Upload 문서에서 Presigned URL 방식 등 더 자세한 업로드 방법을 확인하세요.

공통 파라미터

POST /v1/predictions 요청 시 사용되는 공통 파라미터입니다.

파라미터타입필수기본값설명
modelstringYes-모델 식별자
inputobjectYes-위 테이블의 모델별 파라미터를 포함하는 객체
output_folderstringNo-결과물 저장 폴더 경로 (최대 256자, '..' 사용 불가)
webhook_urlstringNo-완료 시 호출할 Webhook URL
is_publicbooleanNofalsetrue 시 결과물을 영구 공개 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
  }
}'

팁 & 모범 사례

1출력 초당 과금이므로 실험 중에는 5초·720p로 시작하고 이후 스케일업하세요
2대사는 큰따옴표("...")로 감싸면 입 모양과 음성이 일치하게 생성됩니다
3프롬프트에서 레퍼런스를 라벨로 참조하세요: '[Image1]의 캐릭터가 [Video1]의 춤을 춘다'
4레퍼런스 비디오는 초당 가격을 약 25% 올리므로 모션 전이·편집이 필요할 때만 사용하세요
54K는 720p보다 초당 5.5배 비싸므로 최종 렌더에만 사용하세요

사용 사례

립싱크 대사가 있는 대화 장면 (프롬프트에 따옴표로 대사 지정)
레퍼런스 이미지를 활용한 의상 교체·제품 쇼케이스 영상
레퍼런스 오디오에 맞춘 음악 싱크 숏폼 콘텐츠
기존 영상의 모션을 유지한 편집·확장
캐릭터가 일관된 멀티 샷 내러티브