Skip to content

Instantly share code, notes, and snippets.

@beingsane
Forked from isaqueprofeta/convert480.sh
Created April 17, 2020 18:25
Show Gist options
  • Save beingsane/167f80986c1887ed2bdb494a92626b55 to your computer and use it in GitHub Desktop.
Save beingsane/167f80986c1887ed2bdb494a92626b55 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