rstemmer / id3edit

🛠 id3edit is a command line tool to edit and debug ID3v2 tags of mp3 files supporting Unicode.
GNU General Public License v3.0
31 stars 4 forks source link

--set-track sets wrong track number #23

Closed rstemmer closed 2 years ago

rstemmer commented 2 years ago

In some situations the track number set via --set-track can be wrong.

Requires investigation. One script for my MusicDB test-setup I use id3edit in triggers that bug.

rstemmer commented 2 years ago

The issue was more within the generating script. It gave an invalid argument to id3edit. Because id3edit does not check for arguments to be valid (See big warning when calling id3edit --help) this wrong value for TRCK got passed through into the mp3 file.

id3edit --create --set-track "/5" test.mp3
id3show test.mp3
# TRCK  Track:    /5

-> Not an issue with id3edit. I may implement parameter checks in version 3 :)