We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The LAME information of the encoded MP3 file is garbled.
Bad data (MP3 HEX):
//LAME???????? 4C 41 4D 45 03 00 09 08 00 04
Data that should have appeared:
//LAME3.98.4 4C 41 4D 45 33 2E 39 38 2E 34
All charAt should be replaced with charCodeAt, because character selection Java and JS are different.
charAt
charCodeAt
Major impact codes:
lamejs/src/js/BitStream.js
Line 201 in 0ae7a4a
charCodeAt should be used.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem
The LAME information of the encoded MP3 file is garbled.
Bad data (MP3 HEX):
Data that should have appeared:
How to solve
All
charAt
should be replaced withcharCodeAt
, because character selection Java and JS are different.Major impact codes:
lamejs/src/js/BitStream.js
Line 201 in 0ae7a4a
charCodeAt
should be used.The text was updated successfully, but these errors were encountered: