Open kasperhollaender opened 3 years ago
Does anyone know how bypass the 30 charracters limit on this module?
It's a limitation of ID3v1 tag header @kasperhollaender and not of this module. Try to use ID3v2 headers instead. ID3v1 is so old, no need to include that header anymore.
I've been using the npm module jsmediatags, but I've noticed, that the return object strings is limited to 30 charracters. It is quite annoying, because I'm unable to search the data correctly.
A return object would look like this:
type: 'ID3', version: '1.0', tags: { title: 'Heartbreak Anthem (with David ', artist: 'Galantis, David Guetta, Little', album: 'Heartbreak Anthem (with David ', year: '0000', comment: '', genre: undefined } }
Does anyone know how bypass the 30 charracters limit on this module?