]> code.delx.au - transcoding/commitdiff
Added HandBrakeCLI scripts
authorJames Bunton <jamesbunton@delx.net.au>
Sat, 6 Aug 2011 02:56:52 +0000 (12:56 +1000)
committerJames Bunton <jamesbunton@delx.net.au>
Sat, 6 Aug 2011 02:56:52 +0000 (12:56 +1000)
hencode.sh [new file with mode: 0755]
n97encode.sh [new file with mode: 0755]

diff --git a/hencode.sh b/hencode.sh
new file mode 100755 (executable)
index 0000000..ec8f6e4
--- /dev/null
@@ -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 (executable)
index 0000000..7ff953d
--- /dev/null
@@ -0,0 +1,13 @@
+#!/bin/bash
+
+HandBrakeCLI \
+       --encoder ffmpeg \
+       --vb 384 \
+       --two-pass \
+       --aencoder faac \
+       --ab 64 \
+       --mixdown stereo \
+       --format mp4 \
+       --maxWidth 640 \
+       "$@"
+