#!/bin/bash
#===============================================================================
#
#          FILE:  convertToAVI.sh
# 
#         USAGE:  ./convertToAVI.sh 
# 
#   DESCRIPTION:  Convert supported media files to AVI format
# 
#       OPTIONS:  ---
#  REQUIREMENTS:  ---
#          BUGS:  ---
#         NOTES:  ---
#        AUTHOR:  John Ryland (JR), (jryland@invertedlogic.com)
#       COMPANY:  InvertedLogic
#       VERSION:  1.0
#       CREATED:  08/04/2011
#      REVISION:  ---
#===============================================================================

ffmpeg -i "$1" -vcodec copy -acodec "$1"

