Explicitly accept album art as saved by Windows Media Player (#692)

Windows Media Player saves album covers in AlbumArt* files. Since 2011
Android has considered them as non-media files[1] and hasn't shown in
the Gallery application.

[1] ade06df0fe
This commit is contained in:
steelman 2017-11-12 08:15:31 +00:00 committed by Adrian Ulrich
parent 4e7e53e2a7
commit f631fb873d

View File

@ -199,7 +199,11 @@ public class CoverCache {
/**
* Priority-ordered list of possible cover names
*/
private final static Pattern[] COVER_MATCHES = { Pattern.compile("(?i).+/(COVER|ALBUM)\\.(JPE?G|PNG)$"), Pattern.compile("(?i).+/(CD|FRONT|ARTWORK)\\.(JPE?G|PNG)$"), Pattern.compile("(?i).+\\.(JPE?G|PNG)$") };
private final static Pattern[] COVER_MATCHES = {
Pattern.compile("(?i).+/(COVER|ALBUM)\\.(JPE?G|PNG)$"),
Pattern.compile("(?i).+/ALBUMART(_\\{[-0-9A-F]+\\}_LARGE)?\\.(JPE?G|PNG)$"),
Pattern.compile("(?i).+/(CD|FRONT|ARTWORK|FOLDER)\\.(JPE?G|PNG)$"),
Pattern.compile("(?i).+\\.(JPE?G|PNG)$") };
/**
* Projection of all columns in the database
*/