Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
josiahsiegel avatar

Fal Text To Video

  • 59 installs
  • 50 repo stars
  • Updated June 18, 2026
  • josiahsiegel/claude-plugin-marketplace

Helps with ai & agent building tasks.

About

fal-text-to-video is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.

  • fal-text-to-video
  • AI & Agent Building
  • AI-coding skill

Fal Text To Video by the numbers

  • 59 all-time installs (skills.sh)
  • +4 installs in the week ending Aug 2, 2026 (Skillselion tracking)
  • Ranked #6,524 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 3, 2026 (Skillselion catalog sync)
npx skills add https://github.com/josiahsiegel/claude-plugin-marketplace --skill fal-text-to-video

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs59
repo stars50
Last updatedJune 18, 2026
Repositoryjosiahsiegel/claude-plugin-marketplace

What it does

Helps with ai & agent building tasks.

Files

SKILL.mdMarkdownGitHub ↗

Quick Reference

ModelEndpointDurationAudioSpeed
Kling 2.6 Profal-ai/kling-video/v2.6/pro/text-to-video5-10sYesSlow
Sora 2fal-ai/sora5-20sOptionalSlow
LTX-2 Profal-ai/ltx-2-pro5sYesMedium
Runway Turbofal-ai/runway-gen3/turbo/text-to-video5-10sNoFast
Lumafal-ai/luma-dream-machine5sNoMedium
Aspect RatioValueUse Case
Landscape"16:9"Standard video
Portrait"9:16"Social/mobile
Square"1:1"Social posts
Prompt StructureExample
Subject + Action"A woman walks"
+ Setting"through a forest"
+ Style"cinematic lighting"
+ Camera"tracking shot"

When to Use This Skill

Use for text-to-video generation:

  • Creating videos from text descriptions
  • Choosing models by quality/speed tier
  • Crafting motion-oriented prompts
  • Generating videos with native audio
  • Preview workflow (fast) → Final (quality)

Related skills:

  • For image-to-video: see fal-image-to-video
  • For video editing: see fal-video-to-video
  • For model comparison: see fal-model-guide

---

fal.ai Text-to-Video Models

Complete reference for all text-to-video generation models on fal.ai.

Kling Video Models

Kling 2.0 Standard

Endpoint: fal-ai/kling-video/v2.0/text-to-video Best For: Good quality, cost-effective

import { fal } from "@fal-ai/client";

const result = await fal.subscribe("fal-ai/kling-video/v2.0/text-to-video", {
  input: {
    prompt: "A majestic eagle soaring over snow-capped mountains at golden hour, cinematic lighting",
    duration: "5",  // "5" or "10" seconds
    aspect_ratio: "16:9",
    negative_prompt: "blurry, distorted, low quality"
  }
});

console.log(result.video.url);
import fal_client

result = fal_client.subscribe(
    "fal-ai/kling-video/v2.0/text-to-video",
    arguments={
        "prompt": "A majestic eagle soaring over mountains",
        "duration": "5",
        "aspect_ratio": "16:9",
        "negative_prompt": "blurry, distorted"
    }
)
print(result["video"]["url"])

Kling 2.5 Pro

Endpoint: fal-ai/kling-video/v2.5/pro/text-to-video Best For: Professional quality videos

const result = await fal.subscribe("fal-ai/kling-video/v2.5/pro/text-to-video", {
  input: {
    prompt: "A luxury car driving through a mountain road, drone shot, cinematic",
    duration: "5",
    aspect_ratio: "16:9",
    negative_prompt: "shaky, amateur, blurry"
  }
});

Kling 2.6 Pro (Latest)

Endpoint: fal-ai/kling-video/v2.6/pro/text-to-video Best For: Highest quality with native audio generation

The latest Kling model with built-in audio generation.

const result = await fal.subscribe("fal-ai/kling-video/v2.6/pro/text-to-video", {
  input: {
    prompt: "Ocean waves crashing on rocky cliffs at sunset, seagulls flying, ambient sounds",
    duration: "5",
    aspect_ratio: "16:9",
    negative_prompt: "static, boring, low quality"
  }
});

console.log(result.video.url);
console.log(result.audio?.url);  // Native audio included

Kling Parameters:

ParameterTypeValuesDescription
promptstring-Video description
durationstring"5", "10"Duration in seconds
aspect_ratiostring"16:9", "9:16", "1:1"Video dimensions
negative_promptstring-What to avoid

Sora 2

Sora (OpenAI)

Endpoint: fal-ai/sora Best For: Advanced, creative video generation

const result = await fal.subscribe("fal-ai/sora", {
  input: {
    prompt: "A stylish woman walks down a Tokyo street filled with warm glowing neon and animated city signage. She wears a black leather jacket, a long red dress, and black boots. She carries a black purse. She wears sunglasses and red lipstick. She walks confidently. The street is damp and reflective, creating a mirror effect of the colorful lights.",
    duration: 10,
    aspect_ratio: "16:9",
    resolution: "1080p"
  }
});

console.log(result.video.url);

Sora Parameters:

ParameterTypeValuesDescription
promptstring-Detailed video description
durationnumber5-20Duration in seconds
aspect_ratiostring"16:9", "9:16", "1:1"Video dimensions
resolutionstring"720p", "1080p"Output resolution

LTX Video Models

LTX Video (Original)

Endpoint: fal-ai/ltx-video Best For: Fast, efficient generation

const result = await fal.subscribe("fal-ai/ltx-video", {
  input: {
    prompt: "A beautiful sunset over the ocean with gentle waves",
    negative_prompt: "low quality, blurry, distorted",
    num_inference_steps: 30,
    guidance_scale: 7.5,
    aspect_ratio: "16:9"
  }
});

LTX Video v2

Endpoint: fal-ai/ltx-video/v2 Best For: Improved quality over v1

const result = await fal.subscribe("fal-ai/ltx-video/v2", {
  input: {
    prompt: "A futuristic city with flying cars and neon lights",
    negative_prompt: "ugly, distorted",
    num_inference_steps: 35,
    guidance_scale: 7.0,
    resolution: "720p"
  }
});

LTX-2 Pro

Endpoint: fal-ai/ltx-2-pro Best For: High fidelity with audio support

const result = await fal.subscribe("fal-ai/ltx-2-pro", {
  input: {
    prompt: "A jazz band performing in a dimly lit club, smooth music, intimate atmosphere",
    negative_prompt: "worst quality, inconsistent motion, blurry",
    num_inference_steps: 30,
    guidance_scale: 3.5,
    resolution: "720p",
    enable_audio: true  // Generate matching audio
  }
});

console.log(result.video.url);
console.log(result.audio?.url);  // Audio track if enabled

LTX Parameters:

ParameterTypeDefaultDescription
promptstring-Video description
negative_promptstring-What to avoid
num_inference_stepsnumber30Quality steps
guidance_scalenumber7.5Prompt adherence
resolutionstring"720p""720p" or "480p"
aspect_ratiostring"16:9"Video dimensions
enable_audiobooleanfalseGenerate audio (LTX-2 Pro)

Wan Video

Wan v2.1 1.3B

Endpoint: fal-ai/wan/v2.1/1.3b/text-to-video Best For: Lightweight, fast generation

const result = await fal.subscribe("fal-ai/wan/v2.1/1.3b/text-to-video", {
  input: {
    prompt: "A cat playing with a ball of yarn, cute, playful",
    num_frames: 81,  // Number of frames
    resolution: "480p"
  }
});

Wan v2.1 14B

Endpoint: fal-ai/wan/v2.1/14b/text-to-video Best For: Higher quality, larger model

const result = await fal.subscribe("fal-ai/wan/v2.1/14b/text-to-video", {
  input: {
    prompt: "A professional chef preparing sushi, precise movements, high-end restaurant",
    num_frames: 81,
    resolution: "720p"
  }
});

MiniMax Video

MiniMax Text-to-Video

Endpoint: fal-ai/minimax-video/text-to-video Best For: Balanced quality and speed

const result = await fal.subscribe("fal-ai/minimax-video/text-to-video", {
  input: {
    prompt: "A butterfly emerging from a cocoon, macro shot, nature documentary style",
    prompt_optimizer: true  // Enhance prompt automatically
  }
});

MiniMax Parameters:

ParameterTypeDescription
promptstringVideo description
prompt_optimizerbooleanAuto-enhance prompt

Runway Gen-3

Runway Gen-3 Turbo

Endpoint: fal-ai/runway-gen3/turbo/text-to-video Best For: Fast iteration, previews

const result = await fal.subscribe("fal-ai/runway-gen3/turbo/text-to-video", {
  input: {
    prompt: "A dancer performing ballet in an empty theater, spotlight, graceful movements",
    duration: 5,
    ratio: "16:9"
  }
});

Runway Parameters:

ParameterTypeValuesDescription
promptstring-Video description
durationnumber5, 10Seconds
ratiostring"16:9", "9:16", "1:1"Aspect ratio

Luma Dream Machine

Luma Text-to-Video

Endpoint: fal-ai/luma-dream-machine Best For: Creative, artistic videos

const result = await fal.subscribe("fal-ai/luma-dream-machine", {
  input: {
    prompt: "A magical forest with glowing mushrooms and fireflies at night",
    aspect_ratio: "16:9",
    loop: false
  }
});

Luma Parameters:

ParameterTypeDescription
promptstringVideo description
aspect_ratiostring"16:9", "9:16", "1:1"
loopbooleanCreate looping video

CogVideoX

CogVideoX Text-to-Video

Endpoint: fal-ai/cogvideox Best For: Open-source alternative

const result = await fal.subscribe("fal-ai/cogvideox", {
  input: {
    prompt: "A timelapse of a flower blooming, from bud to full bloom",
    num_inference_steps: 50,
    guidance_scale: 6.0
  }
});

CogVideoX-5B

Endpoint: fal-ai/cogvideox-5b Best For: Higher quality open-source

const result = await fal.subscribe("fal-ai/cogvideox-5b", {
  input: {
    prompt: "An astronaut floating in space with Earth in the background",
    num_inference_steps: 50,
    guidance_scale: 6.0,
    num_frames: 49
  }
});

HunyuanVideo

Hunyuan Video

Endpoint: fal-ai/hunyuan-video Best For: Chinese model, good quality

const result = await fal.subscribe("fal-ai/hunyuan-video", {
  input: {
    prompt: "A traditional Chinese dragon dance during festival celebration",
    num_inference_steps: 50,
    guidance_scale: 6.0
  }
});

Model Comparison

Quality Rankings

TierModelsQualitySpeedCost
PremiumKling 2.6 Pro, Sora 2HighestSlow$$$
ProfessionalKling 2.5 Pro, LTX-2 ProHighMedium$$
StandardKling 2.0, Runway TurboGoodFast$
BudgetLTX v1, CogVideoXAcceptableFast$

Feature Comparison

ModelAudioDurationResolutionBest Use
Kling 2.6 ProNative5-10s1080pCinematic
Sora 2Optional5-20s1080pCreative
LTX-2 ProYes5s720pFast HQ
Runway TurboNo5-10s720pIteration
MiniMaxNo6s720pBalanced
LumaNo5s720pArtistic

Speed Comparison (approximate)

Model~Generation Time (5s video)
Runway Gen-3 Turbo30-60s
LTX Video45-90s
MiniMax60-120s
Kling 2.5 Pro120-180s
Kling 2.6 Pro150-240s
Sora 2180-300s

Prompt Engineering for Video

Structure Your Prompts

[Subject] + [Action] + [Setting] + [Style] + [Camera/Technical]

Examples:

// Good: Specific, action-oriented
"A golden retriever running through autumn leaves in a forest, slow motion, cinematic, warm lighting, tracking shot"

// Bad: Vague, static
"A dog in a forest"

Motion Keywords

KeywordEffect
"walking", "running", "jumping"Subject movement
"slow motion", "timelapse"Speed modification
"tracking shot", "pan", "zoom"Camera movement
"floating", "flying", "falling"Spatial movement
"dancing", "spinning", "waving"Rhythmic movement

Style Keywords

KeywordEffect
"cinematic"Movie-like quality
"documentary"Realistic style
"anime"Animated style
"noir"Dark, contrasty
"vibrant"Saturated colors

Camera Movements

TermDescription
"tracking shot"Camera follows subject
"pan left/right"Horizontal camera sweep
"tilt up/down"Vertical camera sweep
"zoom in/out"Focal length change
"drone shot"Aerial perspective
"POV shot"First-person view
"dolly shot"Camera moves on track

Complete Parameter Reference

interface TextToVideoInput {
  // Required
  prompt: string;

  // Duration (varies by model)
  duration?: number | string;  // seconds

  // Dimensions
  aspect_ratio?: "16:9" | "9:16" | "1:1" | "4:3" | "21:9";
  resolution?: "480p" | "720p" | "1080p";

  // Quality control
  negative_prompt?: string;
  num_inference_steps?: number;
  guidance_scale?: number;

  // Reproducibility
  seed?: number;

  // Model-specific
  prompt_optimizer?: boolean;  // MiniMax
  enable_audio?: boolean;      // LTX-2 Pro, Kling 2.6
  loop?: boolean;              // Luma
  num_frames?: number;         // Wan, CogVideoX
}

Workflow Examples

Production workflow and batch-generation examples for fal.ai text-to-video models, including fast preview iteration with Runway Turbo and final rendering with Kling Pro, live in references/workflow-examples.md. Load that reference when turning model-selection guidance into executable generation code.

Best Practices

1. Use `subscribe()` not `run()` - Video generation takes time 2. Start with previews - Use faster models to iterate on prompts 3. Be specific about motion - Describe what moves and how 4. Include camera direction - Guide the visual perspective 5. Use negative prompts - Avoid common artifacts 6. Match model to need - Don't use premium for tests 7. Include audio keywords - For models that support audio generation

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.