dither4/video/extract.sh

18 lines
274 B
Bash
Raw Normal View History

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