Created
February 2, 2013 05:43
-
-
Save reidransom/4696239 to your computer and use it in GitHub Desktop.
Create a really nice variable bit-rate 540p h.264 mp4 using the HandBrakeCLI
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
| #!/bin/bash | |
| OF="${1}.mp4" | |
| HandBrakeCLI -i "$1" -o "$OF" -e x264 -q 20 -E faac -B 256 -6 dpl2 -R Auto -D 0.0 -f mp4 --width 960 --height 540 --decomb --crop 0:0:0:0 --optimize -m -x cabac=0:ref=2:me=umh:bframes=0:weightp=0:subme=6:8x8dct=0:trellis=0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment