Skip to main content
Endpoint: POST https://fal.run/fal-ai/kling-video/create-voice Endpoint ID: fal-ai/kling-video/create-voice

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/create-voice",
    arguments={
        "voice_url": "https://v3b.fal.media/files/b/0a867736/_Wo19V-XrOVYZt6jKE8t5_kling_video.wav"
    },
    with_logs=True,
    on_queue_update=on_queue_update,
)
print(result)

API Reference

Input Schema

voice_url
string
required
URL of the voice audio file. Supports .mp3/.wav audio or .mp4/.mov video. Duration must be 5-30 seconds with clean, single-voice audio.

Output Schema

voice_id
string
required
Unique identifier for the created voice

Input Example

{
  "voice_url": "https://v3b.fal.media/files/b/0a867736/_Wo19V-XrOVYZt6jKE8t5_kling_video.wav"
}

Output Example

{
  "voice_id": "829877809978941442"
}