Getting Started
Installation
Install playwright-recast and its system dependencies.
Install the package
npm install playwright-recastOr with Bun:
bun add playwright-recastInstall ffmpeg
playwright-recast uses ffmpeg and ffprobe for all video processing. Both must be available on your PATH.
macOS
brew install ffmpegUbuntu / Debian
sudo apt install ffmpegWindows
Download from ffmpeg.org and add the bin directory to your system PATH.
Verify installation
ffmpeg -version
ffprobe -versionBoth commands should print version information without errors.
TTS providers (optional)
If you plan to use voiceover, install the provider SDK and set the API key:
OpenAI
export OPENAI_API_KEY="sk-..."ElevenLabs
export ELEVENLABS_API_KEY="..."See the Providers section for full configuration details.
Next steps
Once installed, head to the Quick Start to generate your first video.