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

View File

@@ -0,0 +1,13 @@
;; Chill/Subtle Preset
;; Gentle color shifts and soft effects
(def chill-subtle-preset
(list
{:effect "hue_shift" :params {:degrees {:bind "energy" :range [0 60]}}}
{:effect "saturation" :params {:amount {:bind "bass" :range [0.8 1.3]}}}
{:effect "brightness" :params {:amount {:bind "energy" :range [-10 15]}}}
{:effect "blur" :params {:radius {:bind "bass" :range [0 5]}}}
{:effect "vignette" :params {:strength {:bind "energy" :range [0.2 0.5]}}}
{:effect "film_grain" :params {:intensity {:bind "bass" :range [0.05 0.15]}}}
{:effect "bloom" :params {:intensity {:bind "energy" :range [0.2 0.5]} :radius 15}}
{:effect "color-adjust" :params {:brightness {:bind "bass" :range [-5 10]} :contrast 1.05}}))