Skip to content

Instantly share code, notes, and snippets.

@jadaradix
Created June 30, 2017 13:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jadaradix/7ccfddc1226725104c7c70d6f1bb3df5 to your computer and use it in GitHub Desktop.
Save jadaradix/7ccfddc1226725104c7c70d6f1bb3df5 to your computer and use it in GitHub Desktop.
Convert Blu-ray m2ts files to mkv with MKVToolNix/mkvmerge
# . mkv.sh "xyz/BDMV/STREAM" "~/fs";
cd "$1";
for i in *.m2ts; do
mkvmerge -o "$2/$i.mkv" $i;
done
cd -;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment