aadsm / jsmediatags

Media Tags Reader (ID3, MP4, FLAC)
Other
758 stars 127 forks source link

Max string length of 30 carracters #151

Open kasperhollaender opened 3 years ago

kasperhollaender commented 3 years ago

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?

Borewit commented 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.