M2T to MOV Script with FFMPEG
for DIR in */ ; do | |
echo "[ALERT] DIRECTORY - "$DIR; | |
cd $DIR; | |
for file in *.M2T *.m2t; | |
do | |
name=`echo $file | cut -d'.' -f1`; | |
if [ ! "$name" == "*" ]; | |
then | |
echo "[ALERT] File Name - "$name; | |
if [ ! -f $name.mov ]; | |
then | |
ffmpeg -i "$file" -f mov "$name.mov"; | |
else | |
echo "[ALERT] Already Encoded"; | |
fi | |
fi | |
done | |
cd ..; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
taylor224 commentedFeb 21, 2015
Requirement : FFMPEG
This script encode all M2T file to MOV file under current directory (1 depth).