CEP Extension for After Effects 2025+

AI-Powered Workflow
Docked in After Effects

Generate ExtendScript, analyze compositions with vision AI, and automate repetitive tasks — all from a professional panel that lives inside your workspace.

Free tier available Bring your own API key Windows & macOS
Letterblack Panel in After Effects

Motion Design Shouldn't Feel Repetitive

After Effects is powerful — but daily workflows are filled with manual, repetitive tasks that slow you down.

Panel Switching

Constantly jumping between Effects, Timeline, Project, and Script Editor breaks focus.

Scripting Overhead

Writing the same rename, organize, and batch scripts over and over for every project.

Error Debugging

Cryptic expression errors waste hours when you just need the animation to work.

Context Loss

Searching forums, documentation, and Stack Overflow — losing context every time you switch tabs.

Try the Interface

Experience the Letterblack panel interactively — click the tabs to explore each feature

LETTERBLACK GEN-AI
Connected
How do I rename all layers to match their source files?

I can generate a script for that. Here's what it will do:

var comp = app.project.activeItem;
for (var i = 1; i <= comp.numLayers; i++) {
  comp.layer(i).name = comp.layer(i).source.name;
}
rename_layers.jsx
// Rename all layers to source file names
var comp = app.project.activeItem;
if (!comp) {
  alert("No composition selected");
  return;
}
app.beginUndoGroup("Rename Layers");
for (var i = 1; i <= comp.numLayers; i++) {
  var layer = comp.layer(i);
  if (layer.source) {
    layer.name = layer.source.name;
  }
}
app.endUndoGroup();

Layer Management

Rename to Source
Create Null Parent
Sequential Numbering

Effects & Presets

Apply Drop Shadow
Auto-Color Correct

Export & Render

Export Frame as PNG
Batch Render Comps
24
Scripts Run
2
Errors
158ms
Avg Execution
Recent Activity
rename_layers.jsx executed successfully 2m ago
Error: Layer not found at index 5 5m ago
create_null_parent.jsx executed successfully 12m ago

Listen to the Overview

Prefer to listen? We've created a 3-minute audio walkthrough explaining what Letterblack is, how it works, and who it's built for.

3:24 minutes Narrated overview
0:00 / 3:24

Ready to play.

Open audio directly

Seven Tools. One Docked Panel.

Letterblack is a professional CEP extension that brings AI-powered assistance directly into your After Effects workspace — no floating windows, no context switching.

  • AI Chat Panel — Ask questions, get answers without leaving After Effects
  • Self-Healing Scripts — If code fails, it automatically rewrites and fixes itself
  • Apply Effects — Type "add glow" and effects apply instantly (3x faster)
  • Script Generator — Generate ExtendScript and expressions from plain language
  • Project Memory — Save brand colors, client feedback, and project rules
  • Timeline Vision — AI sees your current frame, layers, and playhead position
  • Vision AI — Analyze composition screenshots with Claude/GPT-4V/Gemini
  • Script Library — Save and organize reusable scripts by category
  • Batch Processing — Apply changes to 50+ layers with one command
  • Telemetry Dashboard — Track errors, performance, and diagnostics
  • Safety Engine (LSBE) — Validates every action before execution
Script Library Panel

Professional Tools for Real Production

Built for motion designers, technical artists, and studios who need clarity, safety, and speed.

Context-Aware Chat

Enable context mode and the AI receives your composition metadata, selected layers, and After Effects version with every message.

Self-Healing Scripts

If generated code fails, Letterblack automatically detects the error and rewrites the script until it works. No debugging required.

Apply Effects Instantly

Type "add glow" or "apply drop shadow" — effects and presets are applied instantly via natural language. 3x faster than native panels.

Project Memory

Save client feedback, brand colors, and project rules into the Notebook. Letterblack remembers these details weeks later for consistency.

Timeline Vision

AI analyzes your current frame, layer stacking, and playhead position — providing context-aware suggestions and visual troubleshooting.

Vision AI Analysis

Screenshot your composition and ask questions. Vision models analyze your frames and provide feedback on layout, color, or technical issues.

Script Library

Organize scripts by category. Save common operations. Share across projects. Everything stored locally on your machine.

Batch Processing

Apply complex effect stacks or property changes to 50+ layers with a single command. Instant project-wide consistency.

Hybrid AI Engine

Smart routing between local models (fast, private) and cloud models (complex reasoning). Automatic cost optimization and offline support.

Safety Guardrails (LSBE)

Letterblack Security & Behavior Engine validates every action before execution. No silent failures, no destructive changes without confirmation.

Error Telemetry

Track script errors, performance metrics, and diagnostics in dedicated panels. No more hidden failures.

Built for Your Workflow

From solo creators to enterprise studios

Freelance Motion Designers

Speed up repetitive tasks like layer renaming, batch exports, and expression troubleshooting. Focus on creative work, not boilerplate scripting.

  • Generate scripts for one-off tasks
  • Ask quick questions without leaving AE
  • Build a personal script library
POPULAR

Technical Artists & Leads

Standardize workflows across teams. Provide pre-built scripts for junior artists. Track errors and performance issues before they become blockers.

  • Share script libraries with teams
  • Monitor telemetry across projects
  • Validate compositions with vision AI

Studios & Pipelines

Integrate AI-assisted workflows into After Effects pipelines. Reduce onboarding time. Maintain control with local-first architecture.

  • Deploy with team API keys or local AI
  • No external dependencies or subscriptions
  • Fully auditable script execution

See It in Action

Every feature is designed to fit naturally into your After Effects workspace

AI Chat Panel

AI Chat Panel

Ask questions and get answers without context switching

Script Library

Script Library

Organize and execute saved scripts by category

Telemetry Dashboard

Telemetry Dashboard

Track errors, performance, and diagnostics

Built for Production Environments

Security, transparency, and control are core design principles

Safety Engine (LSBE)

Letterblack Security & Behavior Engine validates every action before it reaches After Effects. No destructive changes, no silent failures.

Self-Healing Code

If generated scripts fail, Letterblack automatically detects errors and rewrites the code until it works. Zero debugging required.

Direct API Calls

Your API key talks directly to the provider (OpenAI, Anthropic, etc). We never proxy, intercept, or store your requests.

No Silent Execution

Every script is displayed in the editor before it runs. You review, you click Run. Nothing executes without consent.

Local-First Storage

Script library, project memory, and settings all live on your machine. Nothing is uploaded to external servers.

Offline AI Support

Run fully offline with Ollama or LM Studio. No cloud dependency for privacy-sensitive production work.

Undo Integration

Every AI action is cleanly recorded in After Effects' native undo stack. Predictable behavior, same result every time.

No Telemetry Harvesting

We don't track your usage, sell your data, or require account logins. One-time purchase, lifetime access.

Professional Development

15 years of VFX experience. Built by someone who uses After Effects daily in production pipelines.

Simple, Transparent Pricing

One-time purchase. Bring your own API key. No subscriptions or hidden costs.

Free
$0

Chat with AI inside After Effects. Ask questions, get answers — no code execution.

  • AI Chat panel (BYOK)
  • Core AI providers supported
  • Conversation memory
  • AE context awareness
  • Community support
Download Free
Pro
$79 one-time

The complete toolkit. Vision AI, script library, and every panel unlocked.

  • Everything in Tier 1
  • Vision AI — analyze comps & frames
  • Script library with categories
  • All 7 panel tools
  • Priority support + 1 year updates
Get Pro

All plans include lifetime access to the version you purchase. Bring your own API key — no server costs, no recurring fees.

Frequently Asked Questions

What is self-healing code?

If Letterblack generates a script that fails, it automatically detects the error, analyzes what went wrong, and rewrites the code until it works — without you touching a single line.

What is the Safety Engine (LSBE)?

The Letterblack Security & Behavior Engine is a validation gate that sits between the AI and After Effects. It prevents destructive actions, validates every command, and ensures nothing executes silently.

How does Project Memory work?

You can save client feedback, brand colors, specific rules (like "always use Hex #FF5733 for logos") into the Notebook. The AI remembers these details weeks later for project consistency.

What is Timeline Vision?

Timeline Vision analyzes your current frame, layer stacking order, and playhead position. This lets the AI provide context-aware suggestions (e.g., "You're on a title layer — try typography effects").

What AI providers are supported?

Letterblack supports OpenAI (GPT-4, GPT-4V), Anthropic (Claude 3/4), Google (Gemini), and Ollama / LM Studio (for local/offline AI).

Do I need an API key?

Yes. Letterblack uses a BYOK (Bring Your Own Key) model. You provide your own API key from OpenAI, Anthropic, or other supported providers. This keeps costs transparent and data private.

Can I batch process multiple layers?

Yes. Apply effect stacks, property changes, or scripts to 50+ layers with a single command. Letterblack handles the entire operation instantly.

Does Letterblack run scripts silently?

No. Every script is displayed in the editor panel before execution. You review the code, then click "Run in After Effects" to execute. Nothing runs without your explicit consent.

What version of After Effects is required?

After Effects 2025 or later. The extension is built with CEP 11 and requires a modern AE version for full compatibility.

Can I use Letterblack offline?

Yes. Configure Ollama or LM Studio as your AI provider and Letterblack runs fully offline with no internet connection required. Perfect for privacy-sensitive work.

Is there a subscription fee?

No. Letterblack is a one-time purchase. You pay once, use forever. No recurring fees, no hidden costs. The only ongoing cost is your API usage (BYOK model).

What platforms are supported?

Windows 10/11 and macOS (Apple Silicon & Intel). The extension is cross-platform compatible with After Effects 2025+ on both operating systems.

Built for Real After Effects Work

Not a demo. Not a prototype. Letterblack is designed for long timelines, tight deadlines, and projects where mistakes cost time.

After Effects 2025+ Windows 10/11 & macOS CEP 11 One-time purchase