Skip to content

Instantly share code, notes, and snippets.

@codecreate-dev
Created June 9, 2020 23:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save codecreate-dev/57300759c9cdd03b1d92aa53512f148e to your computer and use it in GitHub Desktop.
Save codecreate-dev/57300759c9cdd03b1d92aa53512f148e to your computer and use it in GitHub Desktop.
Create image covers from mp4 vids in a for loop
for vid in *.mp4; do ffmpeg -i $vid -codec mjpeg -ss 4 -vframes 1 -q:v 1 ./covers/$vid.jpg; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment