Fully automated B-roll workflow. Claude Code transcribes your talking-head video, decides where B-roll goes, generates clips through Higgsfield, and composites them into a finished video, all from your terminal.
Setup time: ~15 min (one time) Per video: ~20 min generation + ~10 min review
raw/output/final-with-broll.mp4Mac with Homebrew:
brew install ffmpeg
pip3 install openai-whisper
Mac without Homebrew (no sudo):
pip3 install --user openai-whisper imageio-ffmpeg
FFMPEG_BIN=$(python3 -c "import imageio_ffmpeg; print(imageio_ffmpeg.get_ffmpeg_exe())")
mkdir -p ~/bin && ln -sf "$FFMPEG_BIN" ~/bin/ffmpeg
echo 'export PATH="$HOME/bin:$HOME/Library/Python/3.9/bin:$PATH"' >> ~/.zshrc
source ~/.zshrc
Verify:
ffmpeg -version && whisper --help && node --version