Created
March 30, 2017 19:33
-
-
Save isaqueprofeta/266b1297787f87a49067f4d38d5b300d to your computer and use it in GitHub Desktop.
This file contains 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
#!/bin/sh | |
for f in *.mp4; | |
do | |
HandBrakeCLI -i "$f" -o "${f}.m4v" --preset="480p"; | |
done | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment