#!/bin/sh #---------------------------------------------------- # Version: 0.1.0 # Author: Florian "Bluewind" Pritz # # Copyright (C) 2009 Florian Pritz # # Licensed under GNU General Public License v3 # (see COPYING for full license text) # #---------------------------------------------------- # Converts a file to an MP4 which can be played in a flash movie # Video: H264 # Audio: MPEG-4 AAC #---------------------------------------------------- cd "$(dirname $1)" file="$(basename $1)" file_mp4="$(echo ${file} | sed 's/\(.*\)\..*/\1/').mp4" ffmpeg -i "$file" -b 400000 -deinterlace -vcodec libx264 -s 720x576 -r 25 -g 250 -keyint_min 25 -coder ac -me_range 16 -subq 5 -sc_threshold 40 -acodec libfaac -ab 160000 -ar 44100 -cmp +chroma -partitions +parti4x4+partp8x8+partb8x8 -i_qfactor 0.71 -b_strategy 1 -threads 2 -crf 30 -y "$file_mp4" qt-faststart "$file_mp4" "upload_$file_mp4"