Skip to content

Extract screenshot from videos

Shell
2 mo. ago

Extract screenshot from videos at a specific timestamp using ffmpeg.

ffmpeg
processing
screenshot
extract-screenshot-from-videos.sh
for f in *.mp4; do ffmpeg -ss 5 -i "$f" -frames:v 1 "${f%.mp4}.jpg"; done