Patrick Bricout

Results 7 comments of Patrick Bricout

As you found out large files are currently not supported. Out of interested what kind of data are you trying to process that it is that large? Usually ID3 is...

> I think react-native will always fail to execute with node-id3 due to the fs/zlib module import. I'm not sure if there are ways to replace them at compile-time with...

This is quite tricky, because this new requirement introduced in version 4, is kind of backward compatible on read but not on write. None of the various solutions discussed so...

> Would be nice to also add Synchronised lyrics/text (SYLT) https://id3.org/id3v2.3.0#sec4.10 @felpsio this has now been done in #122 since version 0.2.4.

Just a quick implementation note: - the code should detect which tags are in used and set the version 3/4 according to this, i.e. if no v4 tags are used,...

According to the documentation about id3 v2.4 [here](https://id3.org/id3v2.4.0-frames) in the section "4.2. Text information frames" it is specified the following: > The text information frames are often the most important...

My point was that with `node-id3` you should be able to both read and save. When you read split the string with `value.split("\x00")` to retrieve all the values in an...