Claude-code-plugins-plus-skills klingai-model-catalog
install
source · Clone the upstream repo
git clone https://github.com/jeremylongshore/claude-code-plugins-plus-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/jeremylongshore/claude-code-plugins-plus-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/plugins/saas-packs/klingai-pack/skills/klingai-model-catalog" ~/.claude/skills/jeremylongshore-claude-code-plugins-plus-skills-klingai-model-catalog && rm -rf "$T"
manifest:
plugins/saas-packs/klingai-pack/skills/klingai-model-catalog/SKILL.mdsource content
Kling AI Model Catalog
Overview
Kling AI offers multiple model versions across video generation, image generation, lip sync, virtual try-on, and effects. Each version trades off quality, speed, and cost. This skill is the reference for choosing the right model.
Video Generation Models
| Model ID | Supports | Max Duration | Resolution | Speed | Quality |
|---|---|---|---|---|---|
| T2V, I2V | 10s | 720p | Fast | Good |
| I2V only | 10s | 1080p | Fast | Better |
| T2V, I2V | 10s | 1080p | Medium | Better+ |
| T2V, I2V | 10s | 1080p | Medium | High |
| I2V only | 10s | 1080p | Medium | High |
| T2V, I2V | 10s | 1080p | Medium | High |
| T2V, I2V | 10s | 1080p 30fps | Fast | High |
| T2V, I2V | 10s | 1080p 30-48fps | Medium | Highest |
T2V = text-to-video, I2V = image-to-video
Kling v2.5 Turbo (Recommended for Speed)
- 40% faster than v2.0
- Up to 1080p at 30 FPS
- Best cost/quality ratio for production pipelines
Kling v2.6 (Recommended for Quality)
- Native audio generation (voice, SFX, ambient in one pass)
- 1080p at 30-48 FPS
- Set
for synchronized audiomotion_has_audio: true
Image Generation Models (Kolors)
| Model ID | Purpose | Resolution |
|---|---|---|
| Face/subject reference | Up to 2048x2048 |
| Image restyle | Up to 2048x2048 |
| Text-to-image | Up to 2048x2048 |
Specialty Models
| Feature | Endpoint | Model Versions |
|---|---|---|
| Lip Sync | | v1.6+ |
| Virtual Try-On | | v1.5 |
| Video Extension | | All video models |
| Effects | | v1.6+ |
| Motion Control | T2V/I2V with | v1.6+ |
Mode Selection
Every video generation accepts a
mode parameter:
| Mode | Credits (5s) | Credits (10s) | Use Case |
|---|---|---|---|
| 10 | 20 | Drafts, previews, iteration |
| 35 | 70 | Final output, client delivery |
Model Selection Decision Tree
Need fastest generation? → kling-v2-5-turbo + standard mode Need highest quality? → kling-v2-6 + professional mode Need audio in the video? → kling-v2-6 with motion_has_audio: true Image-to-video only? → kling-v2-1 (optimized for I2V) Budget-conscious production? → kling-v2-5-turbo + standard mode (10 credits/5s) Legacy compatibility? → kling-v1-6 (stable, well-documented)
API Usage
# Specify model in any video generation request response = requests.post(f"{BASE}/videos/text2video", headers=headers, json={ "model_name": "kling-v2-6", # model version "mode": "professional", # standard or professional "prompt": "A futuristic city at sunset with flying cars", "duration": "5", "aspect_ratio": "16:9", })
Aspect Ratios (All Models)
| Ratio | Use Case |
|---|---|
| Landscape, YouTube, presentations |
| Vertical, TikTok, Reels, Stories |
| Square, Instagram, thumbnails |
| Classic TV, presentations |
| Portrait photos |
| Standard photography |
| Tall portrait |
| Ultra-wide, cinematic |