fal-kling-o3
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
Chinesefal-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
脚本
| Script | Purpose |
|---|---|
| Generate images with Kling O3 |
| Generate or edit videos with Kling O3 |
| 脚本 | 用途 |
|---|---|
| 用Kling O3生成图像 |
| 用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-videobash
./scripts/kling-video.sh --prompt "A drone shot flying over a tropical island at golden hour" --mode text-to-videoImage to Video
图生视频
bash
./scripts/kling-video.sh --image-url "https://example.com/photo.jpg" --prompt "Camera slowly zooms in" --mode image-to-videobash
./scripts/kling-video.sh --image-url "https://example.com/photo.jpg" --prompt "Camera slowly zooms in" --mode image-to-videoEdit Video (change content)
编辑视频(修改内容)
bash
./scripts/kling-video.sh --video-url "https://example.com/video.mp4" --prompt "Change the sky to a starry night" --mode editbash
./scripts/kling-video.sh --video-url "https://example.com/video.mp4" --prompt "Change the sky to a starry night" --mode editRemix Video (restyle)
重制视频(风格转换)
bash
./scripts/kling-video.sh --video-url "https://example.com/video.mp4" --prompt "Transform into watercolor painting style" --mode remixbash
./scripts/kling-video.sh --video-url "https://example.com/video.mp4" --prompt "Transform into watercolor painting style" --mode remixArguments
参数说明
kling-generate.sh
kling-generate.sh
| Argument | Description | Required |
|---|---|---|
| Image description | Yes |
| square, landscape, portrait, widescreen | No (default: square) |
| Extra param as key=value (repeatable) | No |
| 参数 | 说明 | 是否必填 |
|---|---|---|
| 图像描述 | 是 |
| 可选值:square(方形)、landscape(横屏)、portrait(竖屏)、widescreen(宽屏) | 否(默认:square) |
| 额外参数,格式为key=value(可重复添加) | 否 |
kling-video.sh
kling-video.sh
| Argument | Description | Required |
|---|---|---|
| Description or edit instructions | Yes |
| text-to-video, image-to-video, edit, remix | Yes |
| Image URL (for image-to-video) | For I2V |
| Video URL (for edit/remix) | For edit/remix |
| standard or pro (default: pro) | No |
| Extra param as key=value (repeatable) | No |
| 参数 | 说明 | 是否必填 |
|---|---|---|
| 内容描述或编辑指令 | 是 |
| 可选值:text-to-video、image-to-video、edit、remix | 是 |
| 图片URL(图生视频模式使用) | 图生视频模式必填 |
| 视频URL(编辑/重制模式使用) | 编辑/重制模式必填 |
| 可选值:standard或pro(默认:pro) | 否 |
| 额外参数,格式为key=value(可重复添加) | 否 |
Kling O3 Model Endpoints
Kling O3模型接口
Image Generation
图像生成
| Endpoint | Tier |
|---|---|
| Pro (only tier) |
| 接口地址 | 版本 |
|---|---|
| Pro(唯一支持版本) |
Video Generation
视频生成
| Endpoint | Tier | Mode |
|---|---|---|
| Standard | Text → Video |
| Pro | Text → Video |
| Standard | Image → Video |
| Pro | Image → Video |
| 接口地址 | 版本 | 模式 |
|---|---|---|
| Standard | 文生视频 |
| Pro | 文生视频 |
| Standard | 图生视频 |
| Pro | 图生视频 |
Video Editing
视频编辑
| Endpoint | Tier | Mode |
|---|---|---|
| Standard | Content editing |
| Pro | Content editing |
| Standard | Style remix |
| Pro | Style remix |
| 接口地址 | 版本 | 模式 |
|---|---|---|
| Standard | 内容编辑 |
| Pro | 内容编辑 |
| Standard | 风格重制 |
| 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"}
}