dither4/video/extract.sh
2023-03-25 20:26:45 -07:00

18 lines
274 B
Bash

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