Skip to content

Instantly share code, notes, and snippets.

@caio2k
Last active March 27, 2019 13:36
Show Gist options
  • Save caio2k/f3c09f13525cf30d844f3f3cc3533c61 to your computer and use it in GitHub Desktop.
Save caio2k/f3c09f13525cf30d844f3f3cc3533c61 to your computer and use it in GitHub Desktop.
#!/bin/bash
ls -1 *JPG > /tmp/files.txt
mencoder -nosound -ovc lavc -lavcopts vcodec=mpeg4 -o /tmp/test.avi -mf type=jpeg:fps=15 mf://@/tmp/files.txt
ffmpeg -r 15 -pattern_type glob -i '*.JPG' -vcodec libx264 -vf scale=-1:1080 output.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment