dither4/video-cat/extract.sh

18 lines
259 B
Bash
Raw Normal View History

2023-03-26 01:28:00 +00:00
set -a
mkdir -p frames
ffmpeg \
-i 'cats computer fun.mp4' \
2023-03-26 04:36:14 +00:00
-vf 'scale=256:144' \
2023-03-26 01:28:00 +00:00
-an \
-y 'frames/cats-%04d.png'
ffmpeg \
-i 'cats computer fun.mp4' \
-vn \
-ac 1 \
-ar 15734 \
-acodec pcm_u8 \
-y 'cats-audio.wav'