Fal.AI를 통해 제공되는 ByteDance Seedance 2.5 텍스트-투-비디오 모델입니다. 텍스트 프롬프트만으로 480p/720p, 최대 30초의 원테이크 영상을 생성하며, 샷 전체를 한 번에 추론하기 때문에 첫 프레임부터 마지막 프레임까지 모션·조명·인물 동일성이 유지됩니다. 대사·효과음·음악을 포함한 동기화 오디오도 같은 패스에서 생성됩니다.
콘솔의 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.5/text-to-video",
"input": {
"prompt": "An octopus finds a football in the ocean and excitedly calls its octopus friends to come and play. Cut scene to an octopus football game under the sea.",
"duration": "5",
"resolution": "720p",
"aspect_ratio": "auto",
"generate_audio": true
}
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
prompt | string | Yes | - | 영상 생성을 위한 텍스트 프롬프트입니다. 대사는 큰따옴표로 감싸면 입 모양과 목소리가 함께 생성됩니다. |
duration | string | Yes | 5 | 영상 길이(초, 4~30)이며 문자열로 전달합니다. 필수 항목입니다 — 업스트림은 "auto"도 허용하지만 요청 시점에 결과 길이를 알 수 없어 정확한 과금이 불가능하므로, 본 게이트웨이에서는 명시적인 길이를 요구합니다. 456789101112131415161718192021222324252627282930 |
resolution | string | No | 720p | 영상 해상도입니다. 480p는 빠른 생성, 720p는 균형 잡힌 품질에 적합합니다. 480p720p |
aspect_ratio | string | No | auto | 생성될 영상의 화면비입니다. 가로형은 16:9, 세로형은 9:16, 정사각형은 1:1, 시네마틱 울트라와이드는 21:9를 사용하고, auto로 두면 모델이 선택합니다. auto21:916:94:31:13:49:16 |
generate_audio | boolean | No | true | 효과음, 앰비언스, 립싱크 음성을 포함한 동기화 오디오를 함께 생성할지 여부입니다. 오디오 생성 여부와 관계없이 영상 생성 비용은 동일합니다. |
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.5/text-to-video",
"input": {
"prompt": "An octopus finds a football in the ocean and excitedly calls its octopus friends to come and play. Cut scene to an octopus football game under the sea.",
"duration": "5",
"resolution": "720p",
"aspect_ratio": "auto",
"generate_audio": true
}
}'720p 마스터를 렌더링하기 전에 9:16 세로 프레임의 480p로 저렴하게 구도를 탐색합니다.
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.5/text-to-video",
"input": {
"prompt": "A barista pours latte art in a sunlit cafe, close-up on the cup, warm morning light, gentle jazz in the background.",
"duration": "6",
"resolution": "480p",
"aspect_ratio": "9:16",
"generate_audio": true
}
}'