for f in *.mov
do
	ffmpeg -i "$f" -s hd1080 -vcodec mpeg2video -acodec copy -sameq avi/`basename "$f" .mov`.avi
done
