Update processing copy
This commit is contained in:
parent
37ad2d049b
commit
a02b6f24f5
|
@ -5,7 +5,8 @@
|
||||||
# This script will export all frames of a video and
|
# This script will export all frames of a video and
|
||||||
# then loop over them by running a processing sketch
|
# then loop over them by running a processing sketch
|
||||||
# on each one. The example provided "example-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 <input video> <output video>
|
# Usage: bash processing/processing.sh <input video> <output video>
|
||||||
#
|
#
|
||||||
|
@ -29,7 +30,7 @@ FRAMES=frames/*.png
|
||||||
|
|
||||||
for frame in ${FRAMES}; do
|
for frame in ${FRAMES}; do
|
||||||
echo "Processing $frame with example-sketch..."
|
echo "Processing $frame with example-sketch..."
|
||||||
|
|
||||||
# Run the processing sketch on every frame
|
# Run the processing sketch on every frame
|
||||||
bash processing/example-sketch.sh "${frame}" "processing-${frame}"
|
bash processing/example-sketch.sh "${frame}" "processing-${frame}"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue