Using eyeD3 to change a bunch of mp3’s information in bulk.

I needed to modify a ton of mp3 files today, and thought I would document it for me, and, for you. rename all files based on id3 tags ** use with caution eyeD3 --rename '$artist - $album - $title' *.mp3 RENAME ALL FILES IN ALL SUB DIRS BASED ON FILE NAME ** use with caution find . -name *.mp3 -execdir eyeD3 --rename '$artist - $album - $title' *.mp3 {} \; DELETE FILES OF SPECIFIC TYPE AND DOTFILES...

August 13, 2018 · 4 min · 685 words · Matt G