fal-kling-o3

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

fal-kling-o3

fal-kling-o3

Kling O3 is Kling's most powerful model family — covering image generation, text-to-video, image-to-video, and video-to-video editing/remix. Two tiers: Standard (faster, cheaper) and Pro (highest quality).
Kling O3是Kling最强大的模型系列,覆盖图像生成、文生视频、图生视频、视频转视频编辑/重制功能。分为两个版本:Standard(标准版)(速度更快、成本更低)和Pro(专业版)(质量最高)。

Scripts

脚本

ScriptPurpose
kling-generate.sh
Generate images with Kling O3
kling-video.sh
Generate or edit videos with Kling O3
脚本用途
kling-generate.sh
用Kling O3生成图像
kling-video.sh
用Kling O3生成或编辑视频

Usage

使用方法

Generate Image

生成图像

bash
./scripts/kling-generate.sh --prompt "A samurai standing on a cliff at sunset, cinematic lighting"
bash
./scripts/kling-generate.sh --prompt "A samurai standing on a cliff at sunset, cinematic lighting"

Text to Video

文生视频

bash
./scripts/kling-video.sh --prompt "A drone shot flying over a tropical island at golden hour" --mode text-to-video
bash
./scripts/kling-video.sh --prompt "A drone shot flying over a tropical island at golden hour" --mode text-to-video

Image to Video

图生视频

bash
./scripts/kling-video.sh --image-url "https://example.com/photo.jpg" --prompt "Camera slowly zooms in" --mode image-to-video
bash
./scripts/kling-video.sh --image-url "https://example.com/photo.jpg" --prompt "Camera slowly zooms in" --mode image-to-video

Edit Video (change content)

编辑视频(修改内容)

bash
./scripts/kling-video.sh --video-url "https://example.com/video.mp4" --prompt "Change the sky to a starry night" --mode edit
bash
./scripts/kling-video.sh --video-url "https://example.com/video.mp4" --prompt "Change the sky to a starry night" --mode edit

Remix Video (restyle)

重制视频(风格转换)

bash
./scripts/kling-video.sh --video-url "https://example.com/video.mp4" --prompt "Transform into watercolor painting style" --mode remix
bash
./scripts/kling-video.sh --video-url "https://example.com/video.mp4" --prompt "Transform into watercolor painting style" --mode remix

Arguments

参数说明

kling-generate.sh

kling-generate.sh

ArgumentDescriptionRequired
--prompt
/
-p
Image descriptionYes
--aspect-ratio
square, landscape, portrait, widescreenNo (default: square)
--param
Extra param as key=value (repeatable)No
参数说明是否必填
--prompt
/
-p
图像描述
--aspect-ratio
可选值:square(方形)、landscape(横屏)、portrait(竖屏)、widescreen(宽屏)否(默认:square)
--param
额外参数,格式为key=value(可重复添加)

kling-video.sh

kling-video.sh

ArgumentDescriptionRequired
--prompt
/
-p
Description or edit instructionsYes
--mode
text-to-video, image-to-video, edit, remixYes
--image-url
Image URL (for image-to-video)For I2V
--video-url
Video URL (for edit/remix)For edit/remix
--tier
standard or pro (default: pro)No
--param
Extra param as key=value (repeatable)No
参数说明是否必填
--prompt
/
-p
内容描述或编辑指令
--mode
可选值:text-to-video、image-to-video、edit、remix
--image-url
图片URL(图生视频模式使用)图生视频模式必填
--video-url
视频URL(编辑/重制模式使用)编辑/重制模式必填
--tier
可选值:standard或pro(默认:pro)
--param
额外参数,格式为key=value(可重复添加)

Kling O3 Model Endpoints

Kling O3模型接口

Image Generation

图像生成

EndpointTier
fal-ai/kling-image/o3/text-to-image
Pro (only tier)
接口地址版本
fal-ai/kling-image/o3/text-to-image
Pro(唯一支持版本)

Video Generation

视频生成

EndpointTierMode
fal-ai/kling-video/o3/standard/text-to-video
StandardText → Video
fal-ai/kling-video/o3/pro/text-to-video
ProText → Video
fal-ai/kling-video/o3/standard/image-to-video
StandardImage → Video
fal-ai/kling-video/o3/pro/image-to-video
ProImage → Video
接口地址版本模式
fal-ai/kling-video/o3/standard/text-to-video
Standard文生视频
fal-ai/kling-video/o3/pro/text-to-video
Pro文生视频
fal-ai/kling-video/o3/standard/image-to-video
Standard图生视频
fal-ai/kling-video/o3/pro/image-to-video
Pro图生视频

Video Editing

视频编辑

EndpointTierMode
fal-ai/kling-video/o3/standard/video-to-video/edit
StandardContent editing
fal-ai/kling-video/o3/pro/video-to-video/edit
ProContent editing
fal-ai/kling-video/o3/standard/video-to-video/reference
StandardStyle remix
fal-ai/kling-video/o3/pro/video-to-video/reference
ProStyle remix
接口地址版本模式
fal-ai/kling-video/o3/standard/video-to-video/edit
Standard内容编辑
fal-ai/kling-video/o3/pro/video-to-video/edit
Pro内容编辑
fal-ai/kling-video/o3/standard/video-to-video/reference
Standard风格重制
fal-ai/kling-video/o3/pro/video-to-video/reference
Pro风格重制

When to use Standard vs Pro

标准版与专业版选择指南

  • Pro: Best quality. Use for final output, commercial work, when quality matters most.
  • Standard: ~2x faster, cheaper. Use for drafts, iteration, when speed matters.
  • Pro(专业版):质量最优,适合最终输出、商业项目等对质量要求最高的场景。
  • Standard(标准版):速度快约2倍,成本更低,适合草稿制作、方案迭代等对速度要求更高的场景。

Output Format

输出格式

json
{
  "images": [{"url": "https://fal.media/files/...", "content_type": "image/png"}],
  "video": {"url": "https://fal.media/files/...", "content_type": "video/mp4"}
}
json
{
  "images": [{"url": "https://fal.media/files/...", "content_type": "image/png"}],
  "video": {"url": "https://fal.media/files/...", "content_type": "video/mp4"}
}