Last active
August 29, 2015 14:15
-
-
Save taylor224/d92829fe11b5a25aa900 to your computer and use it in GitHub Desktop.
M2T to MKV Script with FFMPEG
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.mkv ]; | |
then | |
ffmpeg -i "$file" -scodec copy -acodec copy -vcodec copy -f matroska "$name.mkv" | |
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
Requirement : FFMPEG
This script encode all M2T file to MKV file under current directory (1 depth).