summaryrefslogtreecommitdiffstats
path: root/bin/ipod_movie
diff options
context:
space:
mode:
Diffstat (limited to 'bin/ipod_movie')
-rwxr-xr-xbin/ipod_movie18
1 files changed, 0 insertions, 18 deletions
diff --git a/bin/ipod_movie b/bin/ipod_movie
deleted file mode 100755
index 8f0cdb4..0000000
--- a/bin/ipod_movie
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/bash
-
-in_name=$1
-out_name=$( echo ${in_name} | sed 's/\(.*\)\..*/\1_ipod.mov/' )
-aspect=$2
-
-echo "Writing out ${in_name} in iPod format to ${out_name}..."
-echo
-
-ffmpeg -vcodec xvid -b 350 -bufsize 4096 -g 300 -acodec aac -ab 96 -ac 2 -i "${in_name}" -s 320x240 -aspect ${aspect} "${out_name}"
-
-if [[ $? -eq 0 ]]; then
- echo
- echo "done."
-else
- echo
- echo "failed."
-fi