Skip to content

Instantly share code, notes, and snippets.

@reidransom
Created February 2, 2013 05:43
Show Gist options
  • Select an option

  • Save reidransom/4696239 to your computer and use it in GitHub Desktop.

Select an option

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
#!/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