Wan 2.5의 고속 텍스트-비디오 생성 변형으로, 좋은 품질의 출력을 유지하면서 속도에 최적화되었습니다.
콘솔의 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": "wan-video/wan-2.5-t2v-fast",
"input": {
"prompt": "Colorful autumn leaves falling in a park, gentle breeze, warm sunlight filtering through trees, peaceful atmosphere",
"aspect_ratio": "16:9",
"duration": 5
}
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
prompt | string | Yes | - | 생성할 비디오에 대한 텍스트 설명 |
negative_prompt | string | No | - | 특정 요소를 피하기 위한 네거티브 프롬프트 |
audio | string | No | - | 음성/음악 동기화를 위한 오디오 파일 (wav/mp3, 3-30초, 15MB 이하) |
size | string | No | 1280*720 | 비디오 해상도 및 비율 1280*720720*12801920*10801080*1920 |
duration | integer | No | 5 | 비디오 길이 초 510 |
enable_prompt_expansion | boolean | No | true | true로 설정하면 프롬프트 최적화 기능이 활성화됩니다 |
seed | integer | No | - | 재현성을 위한 랜덤 시드 |
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": "wan-video/wan-2.5-t2v-fast",
"input": {
"prompt": "Colorful autumn leaves falling in a park, gentle breeze, warm sunlight filtering through trees, peaceful atmosphere",
"aspect_ratio": "16:9",
"duration": 5
}
}'