Skip to content

Instantly share code, notes, and snippets.

@Aldaviva
Last active December 28, 2017 17:22
Show Gist options
  • Save Aldaviva/7d14f915690fc466e494ec774f3b2036 to your computer and use it in GitHub Desktop.
Save Aldaviva/7d14f915690fc466e494ec774f3b2036 to your computer and use it in GitHub Desktop.
Delete Matroska tags
# requires mkvmerge (https://mkvtoolnix.download)
mkdir notags
find . -depth 1 -name "*.mkv" -exec mkvmerge --title "" -o "notags/{}" --no-track-tags --no-global-tags {} \;
mv notags/* .
rm -r notags
@Aldaviva
Copy link
Author

Could also use mkvpropedit, which might be able to modify the tags without generating a second copy of a potentially large file.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment