From: James Bunton Date: Sat, 6 Aug 2011 02:56:52 +0000 (+1000) Subject: Added HandBrakeCLI scripts X-Git-Url: https://code.delx.au/transcoding/commitdiff_plain/80aa2e7868c0067bfbc0067dc270c3cd7ce68561 Added HandBrakeCLI scripts --- diff --git a/hencode.sh b/hencode.sh new file mode 100755 index 0000000..ec8f6e4 --- /dev/null +++ b/hencode.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +HandBrakeCLI \ + --markers \ + --quality 20 \ + --vfr \ + --loose-anamorphic \ + --encoder x264 \ + --x264opts 'ref=16:bframes=8:b-adapt=2:direct=auto:me=umh:merange=24:subq=10:rc-lookahead=60:trellis=2' \ + --aencoder lame \ + --ab 192 \ + "$@" + diff --git a/n97encode.sh b/n97encode.sh new file mode 100755 index 0000000..7ff953d --- /dev/null +++ b/n97encode.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +HandBrakeCLI \ + --encoder ffmpeg \ + --vb 384 \ + --two-pass \ + --aencoder faac \ + --ab 64 \ + --mixdown stereo \ + --format mp4 \ + --maxWidth 640 \ + "$@" +