Skip to main content
Endpoint: POST https://fal.run/fal-ai/bytedance/video-stylize Endpoint ID: fal-ai/bytedance/video-stylize

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/bytedance/video-stylize",
    arguments={
        "style": "Manga style",
        "image_url": "https://v3.fal.media/files/kangaroo/-KmSPIcXeGA3Z_iiH4C75_tmph2ry_0_8.png"
    },
    with_logs=True,
    on_queue_update=on_queue_update,
)
print(result)

Capabilities

  • Image input

API Reference

Input Schema

style
string
required
The style for your character in the video. Please use a short description.
image_url
string
required
URL of the image to make the stylized video from.

Input Example

{
  "style": "Manga style",
  "image_url": "https://v3.fal.media/files/kangaroo/-KmSPIcXeGA3Z_iiH4C75_tmph2ry_0_8.png"
}