Skip to content

Instantly share code, notes, and snippets.

@tlatsas
Created August 26, 2011 07:37
Show Gist options
  • Save tlatsas/1172917 to your computer and use it in GitHub Desktop.
Save tlatsas/1172917 to your computer and use it in GitHub Desktop.
add album artist tag
for f in *; do id3v2 --TPE2 "Various Artists" "${f}"; done
find . -type f -name "*.mp3" -exec id3v2 --TPE2 "Various Artists" '{}' +
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment