]> code.delx.au - transcoding/commitdiff
Removed unneeded files
authorJames Bunton <jamesbunton@fastmail.fm>
Sat, 28 Feb 2009 11:39:47 +0000 (22:39 +1100)
committerJames Bunton <jamesbunton@fastmail.fm>
Sat, 28 Feb 2009 11:39:47 +0000 (22:39 +1100)
encipxv.py [deleted symlink]
encqt7.py [deleted symlink]
ipod_tomp4.sh [deleted file]
tomp4.sh [deleted file]

diff --git a/encipxv.py b/encipxv.py
deleted file mode 120000 (symlink)
index 482c483..0000000
+++ /dev/null
@@ -1 +0,0 @@
-encode.py
\ No newline at end of file
diff --git a/encqt7.py b/encqt7.py
deleted file mode 120000 (symlink)
index 482c483..0000000
--- a/encqt7.py
+++ /dev/null
@@ -1 +0,0 @@
-encode.py
\ No newline at end of file
diff --git a/ipod_tomp4.sh b/ipod_tomp4.sh
deleted file mode 100755 (executable)
index acf003a..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/bash
-
-OUTPUT="$(basename "$1" .avi).mp4"
-MP4BOX="$(which mp4box)" || MP4BOX="$(which MP4Box)"
-
-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
diff --git a/tomp4.sh b/tomp4.sh
deleted file mode 100755 (executable)
index 15a2f26..0000000
--- a/tomp4.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/bash
-
-input="$1"
-output="$(basename "$input" .avi).mp4"
-if [ -z "$input" ]; then
-       echo "Usage: $0 infile"
-       exit 1
-fi
-
-rm -f "$output" &&
-mencoder "$input" -ovc copy -oac copy -of rawvideo -o tmp.h264 &&
-mencoder "$input" -ovc copy -oac copy -of rawaudio -o tmp.aac &&
-MP4Box -add tmp.h264 -add tmp.aac "$output"
-rm -f tmp.h264 tmp.aac &&
-echo 'Done!'
-