klingai-camera-control

Featured

Control camera movements in Kling AI video generation. Use when creating cinematic shots, pans, tilts, zooms, or dolly moves. Trigger with phrases like 'klingai camera', 'kling ai camera motion', 'klingai cinematic', 'klingai pan zoom'.

AI & Automation 2,359 stars 334 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Kling AI Camera Control ## Overview Add controlled camera movements to text-to-video and image-to-video generation using the `camera_control` parameter. Supports pan, tilt, zoom, roll, and dolly. Available on v1.6+ models. **Supports:** `POST /v1/videos/text2video` and `POST /v1/videos/image2video` ## Camera Control Parameters ```python "camera_control": { "type": "simple", # "simple" = one movement axis "config": { "horizontal": 0, # Pan: -10 (left) to 10 (right) "vertical": 0, # Tilt: -10 (down) to 10 (up) "zoom": 0, # Zoom: -10 (out) to 10 (in) "roll": 0, # Roll: -10 (CCW) to 10 (CW) "pan": 0, # Dolly: -10 (left) to 10 (right) "tilt": 0, # Dolly: -10 (down) to 10 (up) } } ``` **Rule:** For `type: "simple"`, only ONE field in `config` can be non-zero. ## Cinematic Shot Examples ### Slow Pan Right ```python response = requests.post(f"{BASE}/videos/text2video", headers=get_headers(), json={ "model_name": "kling-v2-6", "prompt": "A medieval castle on a cliff at sunrise, fog in the valley below", "duration": "5", "mode": "professional", "camera_control": { "type": "simple", "config": {"horizontal": 5, "vertical": 0, "zoom": 0, "roll": 0, "pan": 0, "tilt": 0} }, }) ``` ### Dramatic Zoom In ```python response = requests.post(f"{BASE}/videos/text2video", headers=get_headers(), json={ "model_name": "kling-v2-6", "prompt": ...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
8 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category