dither4/video/extract.sh
2023-03-25 21:36:14 -07:00

18 lines
259 B
Bash

set -a
mkdir -p frames
ffmpeg \
-i colamath-dv.avi \
-vf 'yadif=1,scale=256:192' \
-an \
-y 'frames/colamath-%04d.png'
ffmpeg \
-i colamath-dv.avi \
-vn \
-ac 1 \
-ar 15734 \
-acodec pcm_u8 \
-y 'colamath-audio.wav'