43081j / id3

A JavaScript ID3 tags parser for Node & browsers.
MIT License
335 stars 63 forks source link

Uncaught RangeError: Offset is outside the bounds of the DataView #23

Closed JakeChampion closed 9 years ago

JakeChampion commented 9 years ago

This error came from the line var bomInt = this.getUint16(offset);. Not sure what else I should put into this ticket to help debug. If you can think of anything I could do, just say :-)

Amalthean commented 9 years ago

Yep, same thing happened to me but on this line:

// line 625 dist/id3.js
if(dv.getUint8(i) === 0x00) {
  variableStart = i + 1;
  break;
}
Alafazam commented 9 years ago

I am facing the same Error. It Happens when I use a higher bit rate (320kbps) file.

yashafromrussia commented 9 years ago

This is a duplicate. Please refer to https://github.com/43081j/id3/issues/6

JakeChampion commented 9 years ago

Thanks for the link, closing this as duplicate.