Last active
February 20, 2022 09:22
-
-
Save navicore/1143232d0560a82cf2bf to your computer and use it in GitHub Desktop.
mkvpropedit to edit the video file title metadata (mkv files)
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
#!/usr/bin/env bash | |
#mkvpropedit to edit the video file title metadata (mkv files) | |
for f in *.mkv; do mkvpropedit "$f" --edit info --set "title=${f%.mkv}"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment