#!/bin/sh
infile=$1
base=`echo $infile | sed "s/\.[^.]*$//"`
echo ffmpeg -i $infile \
	-interlace 1 -ildct -ilme -top 1 \
	-acodec ac3 -vcodec mpeg2video \
	-target dvd -muxrate 23000000 -bufsize 3997696 -maxrate 20000000 \
	-aspect 16:9 -s 1440x1080 \
	-qmin 3 -b 18000000 -ab 224000 \
	-f dvd -y $base-hdv.mpg
	
sleep 5
	
ffmpeg -i $infile \
	-interlace 1 -ildct -ilme -top 1 \
	-acodec ac3 -vcodec mpeg2video \
	-target dvd -muxrate 23000000 -bufsize 3997696 -maxrate 20000000 \
	-aspect 16:9 -s 1440x1080 \
	-qmin 3 -b 18000000 -ab 224000 \
	-f dvd -y $base-hdv.mpg
