Skip to content

Instantly share code, notes, and snippets.

@isaqueprofeta
Created March 30, 2017 19:33
Show Gist options
  • Save isaqueprofeta/266b1297787f87a49067f4d38d5b300d to your computer and use it in GitHub Desktop.
Save isaqueprofeta/266b1297787f87a49067f4d38d5b300d to your computer and use it in GitHub Desktop.
#!/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