Wan 2.5의 고속 텍스트-비디오 생성 변형으로, 좋은 품질의 출력을 유지하면서 속도에 최적화되었습니다.
이 모델의 사용법을 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 | - | 생성할 비디오에 대한 텍스트 설명 |
aspect_ratio | string | No | 16:9 | 출력 화면 비율 16:99:161:1 |
duration | integer | No | 5 | 비디오 길이 초 |
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
}
}'POST /v1/predictions