Created
March 11, 2022 17:22
-
-
Save NicoWeio/128ad23568797e8c09b3e7ccc6c74fed to your computer and use it in GitHub Desktop.
Use .inf files created by K3B to set track titles in ID3 metadata
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 i in *.mp3; do mid3v2 -t "$(awk -F "=" '/Tracktitle/ {print $2}' "${i%.*}.inf" | tr -d "'")" "${i%.*}.mp3"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment