المعرفة:: Linux الحالة::مؤرشفة المراجع::


Checking ID3 Tags

eyeD3 file.mp3
id3tool file.mp3
id3info file.mp3
mp3info file.mp3

Removing All ID3 Tags

Using id3convert

  • Install libid3-tools first.
id3convert -s file.mp3
fd .mp3 -x id3convert -s {}

Using eyeD3

Might not work with all files

eyeD3 --remove-all file.mp3
fd .mp3 -x eyeD3 --remove-all {}

Using mp3info

fd .mp3 -x mp3info -d {}

Update ID3 Tags For All MP3 Files In Folder

fd .mp3 -x eyeD3 {} -a "author" -A "album" -c "comment" -t {.}
fd .mp3 -x mp3info {} -a "author" -t {/.} -l "album" -y year
fd .mp3 -x id3tool -r "author" -t {/.} -a "album" -y year {}
# -t = title

Update ID3 Tags version to 2.4

eyeD3 --to-v2.4 file.mp3