Skip to content

Instantly share code, notes, and snippets.

@navicore
Last active February 20, 2022 09:22
Show Gist options
  • Save navicore/1143232d0560a82cf2bf to your computer and use it in GitHub Desktop.
Save navicore/1143232d0560a82cf2bf to your computer and use it in GitHub Desktop.
mkvpropedit to edit the video file title metadata (mkv files)
#!/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