#!/bin/sh
# mencoder -ovc copy -o $@
if [ $# -lt 3 ] ; then
    echo "Usage: $0 <outputvideo> <at least two input videos>"
    exit
fi
output=$1
shift
set -x
mencoder -forceidx -ovc copy -oac pcm -o $output $@
