Kling | o3 | Standard | Video to Video | Reference. Transform videos using reference images and elements with standard quality. Triggers: video to video, kling, o3, standard, reference, v2v
Scanned 6/2/2026
Install via CLI
openskills install awesome-genmedia/skills---
name: kling-o3-standard-video-to-video-reference
description: "Kling | o3 | Standard | Video to Video | Reference. Transform videos using reference images and elements with standard quality. Triggers: video to video, kling, o3, standard, reference, v2v"
allowed-tools: Bash(curl *), WebFetch
---
# Kling | o3 | Standard | Video to Video | Reference
Transform existing videos using reference images for style and appearance at standard quality. Reference images and elements in your prompt for precise control.
## Quick Start
> Requires an each::labs API key. Get one at [eachlabs.ai](https://eachlabs.ai).
```bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "kling-o3-standard-video-to-video-reference",
"version": "0.0.1",
"input": {
"prompt": "Restyle @Video1 with the visual aesthetic from @Image1",
"video_url": "https://example.com/beach-scene.mp4",
"image_urls": ["https://example.com/painting-style.jpg"],
"duration": "5",
"aspect_ratio": "16:9",
"keep_audio": true
}
}'
```
## Parameters
| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| aspect_ratio | string | 16:9 | Aspect ratio. enum: 16:9, 9:16, 1:1 |
| duration | string | 5 | Video duration in seconds (3-15s). enum: 3-15 |
| elements | array | false | Elements (characters/objects) to include. Reference as @Element1, @Element2. |
| image_urls | array | false | Reference images for style/appearance. Reference as @Image1, @Image2. |
| keep_audio | boolean | true | Whether to keep the original audio from the reference video. |
| prompt | string | false | Text prompt. Reference video as @Video1. |
| shot_type | string | customize | Multi-shot video generation type. enum: customize |
| video_url | string | false | Reference video URL. Only .mp4/.mov, 3-10s duration, 720-2160px. |
## Examples
**Apply painting style to video:**
```bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "kling-o3-standard-video-to-video-reference",
"version": "0.0.1",
"input": {
"prompt": "Transform @Video1 into an impressionist painting style inspired by @Image1",
"video_url": "https://example.com/garden-walk.mp4",
"image_urls": ["https://example.com/monet-painting.jpg"],
"duration": "7",
"aspect_ratio": "16:9"
}
}'
```
**Vertical video restyling:**
```bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "kling-o3-standard-video-to-video-reference",
"version": "0.0.1",
"input": {
"prompt": "Make @Video1 look like a comic book animation using @Image1 as style guide",
"video_url": "https://example.com/skateboard-trick.mp4",
"image_urls": ["https://example.com/comic-style.jpg"],
"duration": "5",
"aspect_ratio": "9:16",
"keep_audio": false
}
}'
```
## Related Models
- [kling-o3-pro-video-to-video-reference](../kling-o3-pro-video-to-video-reference/) - Pro tier video to video reference
- [kling-o3-standard-video-to-video-edit](../kling-o3-standard-video-to-video-edit/) - Standard video to video editing
- [kling-o3-standard-text-to-video](../kling-o3-standard-text-to-video/) - Standard text to video
## Documentation
- [each::labs Docs](https://docs.eachlabs.ai)
- [API Reference](https://docs.eachlabs.ai/api/overview)
No comments yet. Be the first to comment!