Skip to content

Instantly share code, notes, and snippets.

@NicoWeio
Created March 11, 2022 17:22
Show Gist options
  • Save NicoWeio/128ad23568797e8c09b3e7ccc6c74fed to your computer and use it in GitHub Desktop.
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
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