From a02b6f24f5df186429df0ad596f0a753fecb9570 Mon Sep 17 00:00:00 2001 From: mattmcw Date: Sun, 9 May 2021 13:07:58 -0400 Subject: [PATCH] Update processing copy --- processing/processing.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/processing/processing.sh b/processing/processing.sh index 51586de..b60dfe1 100644 --- a/processing/processing.sh +++ b/processing/processing.sh @@ -5,7 +5,8 @@ # This script will export all frames of a video and # then loop over them by running a processing sketch # on each one. The example provided "example-sketch" -# will +# will output the same image provided as input in its +# current state. # # Usage: bash processing/processing.sh # @@ -29,7 +30,7 @@ FRAMES=frames/*.png for frame in ${FRAMES}; do echo "Processing $frame with example-sketch..." - + # Run the processing sketch on every frame bash processing/example-sketch.sh "${frame}" "processing-${frame}"