Skip to main content
Endpoint: POST https://fal.run/fal-ai/kling-video/v2.1/master/image-to-video Endpoint ID: fal-ai/kling-video/v2.1/master/image-to-video

Try it in the Playground

Run this model interactively with your own prompts.

Quick Start

import fal_client

def on_queue_update(update):
    if isinstance(update, fal_client.InProgress):
        for log in update.logs:
           print(log["message"])

result = fal_client.subscribe(
    "fal-ai/kling-video/v2.1/master/image-to-video",
    arguments={
        "prompt": "Sunlight dapples through budding branches, illuminating a vibrant tapestry of greens and browns as a pair of robins meticulously weave twigs and mud into a cradle of life, their tiny forms a whirlwind of activity against a backdrop of blossoming spring.  The scene unfolds with a gentle, observational pace, allowing the viewer to fully appreciate the intricate details of nest construction, the soft textures of downy feathers contrasted against the rough bark of the branches, the delicate balance of strength and fragility in their creation.",
        "image_url": "https://v3.fal.media/files/zebra/9Nrm22YyLojSTPJbZYNhh_image.webp"
    },
    with_logs=True,
    on_queue_update=on_queue_update,
)
print(result)

Examples

Sunlight streams through the window, illuminating the ancient bonsai tree and the gardener’s weathered hands as they delicately prune a wayward branch, the soft rustle of shears a counterpoint to the quiet intensity of the moment. The close-up reveals the intricate texture of the bark, the deep gre…
Bathed in the warm glow of a single, strategically placed lamp, the jeweler’s weathered hands delicately cradle a fiery opal, its iridescent depths shimmering like a captured sunset; each careful turn reveals new constellations of color, while the close-up shot emphasizes the stone’s alluring textur…
Swirls of ivory frosting, smooth as porcelain, rise and fall across a towering six-tiered cake, their delicate peaks catching the warm light, a symphony of creamy white against the rich mahogany of the cake stand. Each delicate floral arrangement, painstakingly crafted from sugar paste, adds a burs…

Input Schema

prompt
string
required
image_url
string
required
URL of the image to be used for the video
duration
DurationEnum
default:"5"
The duration of the generated video in seconds Default value: "5"Possible values: 5, 10
negative_prompt
string
default:"blur, distort, and low quality"
Default value: "blur, distort, and low quality"
cfg_scale
float
default:"0.5"
The CFG (Classifier Free Guidance) scale is a measure of how close you want the model to stick to your prompt. Default value: 0.5Range: 0 to 1

Output Schema

video
File
required
The generated video

Input Example

{
  "prompt": "Sunlight dapples through budding branches, illuminating a vibrant tapestry of greens and browns as a pair of robins meticulously weave twigs and mud into a cradle of life, their tiny forms a whirlwind of activity against a backdrop of blossoming spring.  The scene unfolds with a gentle, observational pace, allowing the viewer to fully appreciate the intricate details of nest construction, the soft textures of downy feathers contrasted against the rough bark of the branches, the delicate balance of strength and fragility in their creation.",
  "image_url": "https://v3.fal.media/files/zebra/9Nrm22YyLojSTPJbZYNhh_image.webp",
  "duration": "5",
  "negative_prompt": "blur, distort, and low quality",
  "cfg_scale": 0.5
}

Output Example

{
  "video": {
    "url": "https://v3.fal.media/files/rabbit/YuUWKFq508zzWIiQ0i2vt_output.mp4"
  }
}

Limitations

  • duration restricted to: 5, 10
  • cfg_scale range: 0 to 1
  • aspect_ratio restricted to: 16:9, 9:16, 1:1