#!/bin/sh
# convert MOV to avi which has a way better compression
if [ $# != 2 ] ; then
    echo "Usage: $0 <video-input.mov> <outout.avi>"
    exit
fi
ffmpeg  -me_method full -qscale 1 -i MVI_9526.MOV mvi_9526_full.avi
