-
Notifications
You must be signed in to change notification settings - Fork 310
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
problem with getAlbumImage () #27
Comments
Probably both of |
Are you using the latest version of mp3agic? If the album image description is unicode, it sounds like it might be related to a bug that was fixed in commit ec069e0. Please try the latest version to see if it works for you. |
Just swap if/else branches, i.e ask for |
@srBruning - for mp3s that have both an ID3v1 and ID3v2 tag, you'll probably want to use the ID3v2, or use what you can from it, and fall back to the ID3v1 for missing/blank fields in the ID3v2. As your code stands, for an mp3 with both an ID3v1 and ID3v2 tag, the code that extracts the album image will never be called. |
Thank you. Worked. had to change the conditional to first check if id3v2 |
when using this method returns null for me all the songs that I try even knowing that they have cover
public Musica getMusica(String path) {
The text was updated successfully, but these errors were encountered: