Automate Adobe After Effects with Python - Create, modify, and render AE compositions programmatically.
Perfect for batch video production, template-based workflows, and automated content creation.
π¦ PyPI Package: pypi.org/project/after-effects-automation
Tip
Starring this repo helps more developers discover after-effects-automation β¨
π₯ Also check out my other project RepoGif β the tool I used to generate the GIF above!
- β‘ Quick Start
- β¨ Features
- π Documentation
- π― Examples
- βοΈ How It Works
- π οΈ CLI & Web Editor
- π Troubleshooting
# 1. Install from PyPI
pip install after-effects-automation
# 2. Setup After Effects integration
python install_ae_runner.py
# 3. Run an example
cd examples/basic_composition
python run.py
That's it! A 10-second video will be created automatically.
π¦ PyPI: pypi.org/project/after-effects-automation π Need more help? See the Quick Start Guide
- π¨ Template Creation - Build AE templates programmatically
- π Text Automation - Update text layers with dynamic content
- β‘ Batch Processing - Render hundreds of variations automatically
- π¬ Scene Management - Assemble complex timelines from templates
- π§ Full AE Control - Access all After Effects features via Python
- π Fast Workflow - Batch system speeds up multi-scene projects
| Guide | Description |
|---|---|
| Installation | Complete installation and setup |
| Quick Start | Get started in 5 minutes |
| Examples | Practical working examples |
| CLI Guide | Command-line usage |
| Troubleshooting | Common issues and fixes |
| Process Management | Understanding the automation flow |
Create a video with intro and outro in ~2 minutes:
cd examples/basic_composition
python run.py
Multi-layer text with dynamic content:
cd examples/text_animation
python run.py
Quickly render existing .aep files:
cd examples/render_only
python render.py
π More Examples: See examples/README.md
| Software | Versions |
|---|---|
| After Effects | 2024, 2025, 2025 Beta (CC versions should work) |
| Python | 3.7+ |
| OS | Windows, macOS, Linux (experimental) |
graph LR
A[Python Script] -->|JSON Commands| B(JS Bridge)
B -->|ExtendScript| C{After Effects}
C -->|Builds| D[Composition]
D -->|aerender| E[Final Video]
- Python defines what you want to create
- JavaScript bridge sends commands to After Effects
- After Effects builds the composition
- aerender renders the final video
π Technical Details: See Process Management Guide
- β Automated composition creation & Timeline manipulation
- β Text layer updates & Property keyframing
- β Resource management & Batch rendering
- β Batch Script Execution - Multiple commands in single operation
- β Smart Defaults - Intelligent composition detection
- β Process Management - Efficient AE instance handling
- β Real-time Communication - File-based command queue
- π Fixed Batch System - Black video bug resolved
- π Render-Only Mode - Quick .aep file rendering
- π UTF-8 Support - Proper Unicode handling on Windows
- π Smart Composition Defaults - Auto-detects correct composition
Run automation from a config file using the command line:
ae-automation config.json
Prefer a GUI? Launch the visual editor to modify your configs without touching JSON.
ae-editor config.json
(Note: Replace this link with your actual screenshot link)
After Effects won't start?
- Check
.envhas correct AE path - Verify AE version matches path (2024 vs 2025)
Scripts not executing?
- Enable scripting:
Edit > Preferences > Scripting & Expressions - Install startup script:
python install_ae_runner.py
Empty/black video?
- Update to latest version:
pip install --upgrade after-effects-automation - This was a bug in the batch system (now fixed)
π More Solutions: See Troubleshooting Guide
Contributions welcome! Here's how:
- Report bugs - GitHub Issues
- Share examples - Add to
examples/folder - Improve docs - All
.mdfiles in repo - Submit PRs - Bug fixes and features
This project is licensed under the MIT License. See the LICENSE file for full details.
Adobe After Effects is a trademark of Adobe Inc. This project is not affiliated with, endorsed by, or sponsored by Adobe Inc.
This project is an automation and middleware tool for Adobe After Effects. It requires a valid Adobe Creative Cloud license to use.
The tool works by translating Python commands into Adobe-supported ExtendScript (JavaScript) instructions that After Effects already supports natively.
- It does not modify, crack, patch, or bypass Adobe software
- It does not distribute Adobe assets or binaries
- It does not enable use of After Effects without a license
We do not support or condone software piracy in any form.
By using this project, you confirm that you have obtained Adobe After Effects through official channels at https://www.adobe.com/products/aftereffects.html.
- π¦ PyPI Package - pypi.org/project/after-effects-automation
- π Documentation - Read the guides in
/docsfolder - π‘ Examples - Working code in
examples/folder - π Issues - GitHub Issues
- π¬ Discussions - GitHub Discussions
Made with β€οΈ by the After Effects Automation community

