I want to automatically tag a collection of MP3 to become custom-name VA Albums. Currently, I'm using quite fail-safe commands like this one :
find . -name "*.mp3" -exec eyeD3 -A "Indie 2015" -b "Various Artists" {} \;
Now, I would like to add a running track number to the files. The most straightforward way would be the current match/line number in the find -exec command - is there such a command?
eyeD3 sets the track number by using -n NUM, --track NUM, so I'm searching for something like
find . -name "*.mp3" -exec eyeD3 -A "Indie 2015" -b "Various Artists" -n **FIND_MATCH_NUMBER** {} \;