Reply To: ID3v1 tags?

#9085
gmd
Participant

There should be a starting directory for your find command. You also may have problems with songs or paths that have have spaces in them. I’d recommend:

find /path/to/mp3s -iname "*.mp3" -print0 | xargs -0 id3v2 -C

Using xargs vs exec will speed up the execution of the task.