#!/bin/bash

if [ "$#" -ne 2 ]; then
    echo "comprime.sh origen.avi destino.avi" 1>&2
    exit
fi

mencoder $1 -o $2 -oac copy -ovc lavc

