From: Greg Darke Date: Tue, 2 Sep 2008 10:11:28 +0000 (+1000) Subject: Added another version of tomp4 (this one works for xvid) X-Git-Url: https://code.delx.au/transcoding/commitdiff_plain/2cbd7d9d563bf0f5d2c0a8b5684a0448d9d293c2 Added another version of tomp4 (this one works for xvid) --- diff --git a/ipod_tomp4.sh b/ipod_tomp4.sh new file mode 100755 index 0000000..78a1416 --- /dev/null +++ b/ipod_tomp4.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +OUTPUT="$(basename "$1" .avi).mp4" + +mencoder "$1" -ovc copy -oac copy -of rawaudio -o tmp.aac +rm -f "${OUTPUT}" +MP4Box -add "$1#video" -add tmp.aac "${OUTPUT}" +rm -f tmp.acc