Skip to content

Instantly share code, notes, and snippets.

@xmichaelx
Created October 28, 2018 13:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xmichaelx/efef577b70f6ed570c073c5908548a8e to your computer and use it in GitHub Desktop.
Save xmichaelx/efef577b70f6ed570c073c5908548a8e to your computer and use it in GitHub Desktop.
converts detrac individual image frames into video
for D in `find . -mindepth 1 -type d`
do
ffmpeg -i ${D}/img%05d.jpg -c:v libx264 -vf fps=25 ${D}.mp4
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment