find:ai:b3bcb
ass a id3v2 track number tag to files using find sort and xargs
$ find . -type f -name '*.mp3' | sort | xargs -I {} eyeD3 --track=1 {}
try on your machine
This command finds all mp3 files in the current directory and its subdirectories, sorts them alphabetically, and then uses xargs to apply the eyeD3 command to add the track number tag to each file. It sets the track number to 1 in this example. You can change the track number as needed.
This explanation was created by an AI. In most cases those are correct. But please always be careful and
never run a command you are not sure if it is safe.
Questions that are answered by this command:
- ass a id3v2 track number tag to files using find sort and xargs ?