Alibaba의 Wan 2.2 A14B 텍스트-비디오 모델을 PrunaAI가 최적화해 매우 빠르고 저렴하게 만든 버전입니다. 텍스트 프롬프트만으로 480p 또는 720p의 짧은 클립을 생성하며, 30FPS 프레임 보간이 기본으로 켜져 있습니다. 이미 플랫폼에 있는 Wan 2.2 I2V Fast의 텍스트-비디오 버전입니다.
콘솔의 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.2-t2v-fast",
"input": {
"prompt": "A sports car is driving very fast along a beach at sunset",
"go_fast": true,
"num_frames": 81,
"resolution": "480p",
"aspect_ratio": "16:9",
"sample_shift": 12,
"frames_per_second": 16
}
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
prompt | string | Yes | - | 비디오 생성을 위한 프롬프트 |
optimize_prompt | boolean | No | false | 생성 전에 프롬프트를 중국어로 번역 |
num_frames | integer | No | 81 | 비디오 프레임 수, 81~121 (81일 때 최상의 결과) |
aspect_ratio | string | No | 16:9 | 비디오 화면 비율 16:99:16 |
resolution | string | No | 480p | 비디오 해상도: 16:9는 832x480px, 9:16은 480x832px 480p720p |
frames_per_second | integer | No | 16 | 초당 프레임 수, 5~30. 과금은 16fps 기준 길이로 계산됨 |
interpolate_output | boolean | No | true | ffmpeg로 생성 영상을 30FPS로 보간 (기본값 켜짐) |
go_fast | boolean | No | true | 고속 추론 모드 (가격에는 영향 없음) |
sample_shift | number | No | 12 | 샘플 시프트 계수 (1~20) |
seed | integer | No | - | 랜덤 시드. 비워두면 무작위 값 사용 |
disable_safety_checker | boolean | No | false | 생성 비디오의 안전성 검사기 비활성화 |
lora_weights_transformer | string | No | - | transformer용 LoRA 가중치 로드. 인터넷상의 임의 .safetensors URL을 지원합니다 (예: 'https://huggingface.co/Viktor1717/scandinavian-interior-style1/resolve/main/my_first_flux_lora_v1.safetensors') |
lora_scale_transformer | number | No | 1 | transformer LoRA를 얼마나 강하게 적용할지 결정합니다. |
lora_weights_transformer_2 | string | No | - | transformer_2용 LoRA 가중치 로드. 인터넷상의 임의 .safetensors URL을 지원하며, transformer LoRA와 다른 값을 사용할 수 있습니다. |
lora_scale_transformer_2 | number | No | 1 | transformer_2 LoRA를 얼마나 강하게 적용할지 결정합니다. |
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로도 제공 |
기본 480p 해상도로 빠르고 저렴하게 생성 — 75 크레딧
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.2-t2v-fast",
"input": {
"prompt": "A sports car is driving very fast along a beach at sunset",
"go_fast": true,
"num_frames": 81,
"resolution": "480p",
"aspect_ratio": "16:9",
"sample_shift": 12,
"frames_per_second": 16
}
}'숏폼 소셜 콘텐츠를 위한 고해상도 9:16 출력
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.2-t2v-fast",
"input": {
"prompt": "A barista pours latte art in a cozy cafe, steam rising, warm morning light through the window",
"resolution": "720p",
"aspect_ratio": "9:16",
"num_frames": 81,
"frames_per_second": 16
}
}'