Created
December 25, 2015 17:58
-
-
Save wader/80c2ee7ce157b074d2df to your computer and use it in GitHub Desktop.
Easy format convert with ffmpeg docker image
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| docker pull jrottenberg/ffmpeg | |
| for f in *.mp4 ; do docker run --rm -v $PWD:/files jrottenberg/ffmpeg -i /files/$f /files/${f/\.mp4/\.mp3} ; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment