Initial commit: video effects processing system

Add S-expression based video effects pipeline with modular effect
definitions, constructs, and recipe files.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
gilesb
2026-01-19 12:34:45 +00:00
commit 406cc7c0c7
171 changed files with 13406 additions and 0 deletions

7
run-file.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
# Run the full pipeline: analyze -> plan -> execute -> play
# Usage: ./run.sh recipe.sexp
RECIPE="${1:-recipe-bound.sexp}"
python analyze.py "$RECIPE" | python plan.py "$RECIPE" -a - | python execute.py - -d "$(dirname "$RECIPE")" -o output.mp4