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>
8 lines
263 B
Bash
Executable File
8 lines
263 B
Bash
Executable File
#!/bin/bash
|
|
# Run the full pipeline: analyze -> plan -> execute -> play
|
|
# Usage: ./run.sh recipe.sexp
|
|
|
|
RECIPE="${1:-recipe-bound.sexp}"
|
|
|
|
python3 analyze.py "$RECIPE" | python plan.py "$RECIPE" -a - | python execute.py - -d "$(dirname "$RECIPE")" | xargs mpv --fs
|