From ba8388ab9b0a0c393496b745866e97738b0fdac9 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Sat, 18 Apr 2009 20:49:57 +0200 Subject: convert2mp4 accepts multiple files now --- convert2mp4 | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) (limited to 'convert2mp4') diff --git a/convert2mp4 b/convert2mp4 index 60a82a1..dde121e 100755 --- a/convert2mp4 +++ b/convert2mp4 @@ -1,6 +1,6 @@ -#!/bin/sh +#!/bin/bash #---------------------------------------------------- -# Version: 0.1.0 +# Version: 0.1.1 # Author: Florian "Bluewind" Pritz # # Copyright (C) 2009 Florian Pritz @@ -14,10 +14,14 @@ # Audio: MPEG-4 AAC #---------------------------------------------------- -cd "$(dirname $1)" +for i in $@; do + pushd . &> /dev/null + cd "$(dirname "$i")" -file="$(basename $1)" -file_mp4="$(echo ${file} | sed 's/\(.*\)\..*/\1/').mp4" + file="$(basename "$i")" + 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" + 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" "done_$file_mp4" + popd &> /dev/null +done -- cgit v1.2.3-24-g4f1b