-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
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
Fix minim audio library errors printed to console #138
Comments
These errors are simply saying the mp3 files have no tags. |
Do we want to add tags to the MP3 files then? |
@mapuya19 If it's possible to fix the errors or hide this specific type of error, it would be the best. It seems like the tags metadata does not exist or maybe its value is invalid: |
This is really an issue with the Minim library. It has unsophisticated error logging that can't be configured or turned off. In reality the "errors" being logged are really just warnings. The code in the Minim library just prints all such messages to the System.out stream, and there's no way to configure it. Barring a major revision in Minim to the way ID3 parse errors are handled, there is nothing that can be done here other than to clean up the project mp3 files. As for the logged errors in the original post above, they are explained as follows:
__==== Error parsing ID3v2: String index out of range: -131 So, if the ID3 tags are stripped out of the mp3 project files, it should eliminate the noisy warnings ("errors"). |
The audio in the project is handled by the Minim library. This library is yelling errors at runtime. The sources of the errors are unknown and a solution must be established to fix the errors.
Here are the errors:
The text was updated successfully, but these errors were encountered: