Seedance의 프로 버전으로, 2~12초 길이의 텍스트-비디오·이미지-비디오 변환을 480p·720p·1080p 해상도로 지원합니다.
콘솔의 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-1-pro",
"input": {
"prompt": "The sun rises slowly between tall buildings. [Ground-level follow shot] Bicycle tires roll over a dew-covered street at dawn. The cyclist passes through dappled light under a bridge as the entire city gradually wakes up.",
"duration": 5,
"resolution": "1080p",
"aspect_ratio": "16:9"
}
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
prompt | string | Yes | - | 비디오 생성을 위한 텍스트 프롬프트 |
fps | integer | No | 24 | 초당 프레임 수 24 |
seed | integer | No | - | 재현 가능한 생성을 위한 랜덤 시드 |
image | string | No | - | 이미지-비디오 변환용 입력 이미지 |
duration | integer | No | 5 | 비디오 길이 초 (2~12). 출력 초당 과금 |
resolution | string | No | 1080p | 비디오 해상도. 기본값은 최고 화질인 1080p 480p720p1080p |
aspect_ratio | string | No | 16:9 | 비디오 화면 비율. 이미지 입력 시 무시됨 16:94:31:13:49:1621:99:21 |
camera_fixed | boolean | No | false | 카메라 위치 고정 여부 |
last_frame_image | string | No | - | 마지막 프레임 이미지 (첫 프레임 이미지 필요) |
이 모델의 imagelast_frame_image 파라미터에 파일을 전달하는 방법은 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-1-pro" \
-F 'input={"prompt":"your prompt here"}' \
-F "file:image=@your_file.png"공개 접근 가능한 URL을 직접 전달합니다. Storage API로 업로드한 파일의 file_url도 사용 가능합니다.
{
"model": "bytedance/seedance-1-pro",
"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로도 제공 |
최고 화질을 위한 기본 1080p 해상도의 텍스트-비디오
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-1-pro",
"input": {
"prompt": "The sun rises slowly between tall buildings. [Ground-level follow shot] Bicycle tires roll over a dew-covered street at dawn. The cyclist passes through dappled light under a bridge as the entire city gradually wakes up.",
"duration": 5,
"resolution": "1080p",
"aspect_ratio": "16:9"
}
}'최종 1080p 렌더링 전 프롬프트를 반복 실험하기 위한 저렴한 720p 패스
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-1-pro",
"input": {
"prompt": "A chef plating a dessert in slow motion in a modern restaurant kitchen",
"duration": 5,
"resolution": "720p",
"aspect_ratio": "16:9"
}
}'