node-id3
node-id3 copied to clipboard
Pure JavaScript ID3 Tag library
This is more of a discussion thread, it would be cool to get some input of users 🙂 ID3v2.4.0 defines that text frames can have multiple values (seperated by 0x00)....
[Example file](https://www.mediafire.com/file/ltacgfx4bu1jm9t/TestingAudio.mp3/file). The cover image extracted using [mp3tag](https://www.mp3tag.de/en/) is [this file](https://user-images.githubusercontent.com/26751752/49341730-dcae6280-f651-11e8-958e-00a22294339d.png). I saw that release [v0.1.6](https://github.com/Zazama/node-id3/releases/tag/0.1.6) was related to ID3 v2.4, but according to @kbuffington, is ID3 v2.4 actually not...
Introduce a helper function to convert the keys of an object of tags to their raw conterpart. E.g. ```javascript { "album": "abc", "TBPM": "120" } ``` becomes ```javascript { "TALB":...
Hi! I would like to use this package in my React Native project for reading and writing id3 tags to mp3 files. I have tried to make it working myself,...
I bumped into this: ``` (node:2830) UnhandledPromiseRejectionWarning: RangeError [ERR_FS_FILE_TOO_LARGE]: File size (4280247303) is greater than 2 GB at tryCreateBuffer (fs.js:352:13) at Object.readFileSync (fs.js:388:14) at Object.module.exports.write (./book-stitcher/node_modules/node-id3/index.js:48:27) at createBook (./book-stitcher/bin.js:124:26) ```...
see for reference: https://github.com/DefinitelyTyped/DefinitelyTyped#editing-tests-on-an-existing-package
e.g. to allows simple promisification
So far, 0.2.6 version is latest one, and I'm utilizing the version. During that, I found mistake, as you can see in the image, type should be like ```ts type...
Currently using node-id3 for a project and it's working very well. However, some of my external dependencies expect the ID3 data to be `ISO_8859_1` encoded rather than the default `UTF_16_WITH_BOM`....