This is the bug/patch tracker for Rockbox. Click here for more information.
Quick links: Bugs · Patches · Rockbox frontpage
FS#10057 - album art fails to display
Attached to Project:
Rockbox
Opened by David Woodhouse (dwmw2) - Thursday, 26 March 2009, 12:19 GMT+2
Last edited by Andree Buschmann (Buschel) - Wednesday, 27 July 2011, 08:36 GMT+2
Opened by David Woodhouse (dwmw2) - Thursday, 26 March 2009, 12:19 GMT+2
Last edited by Andree Buschmann (Buschel) - Wednesday, 27 July 2011, 08:36 GMT+2
|
DetailsMost of my album art works fine, although I haven't worked out how to get it to work for albums with a question mark in their name.
I added 'Fleetwood Mac-Rumours' to my player today, and the album art for it doesn't work. The ID3 tags for artist/album look correct; it appears in the database correctly. [dwmw2@macbook Rumours]$ id3info The\ Chain\ \(LP\ Version\).mp3 | egrep TPE1\|TALB === TALB (Album/Movie/Show title): Rumours === TPE1 (Lead performer(s)/Soloist(s)): Fleetwood Mac The file 'Fleetwood Mac-Rumours.bmp' exists in the .rockbox/albumart directory and is correct: [dwmw2@macbook albumart]$ file Fleetwood\ Mac-* Fleetwood Mac-Miles of Greatest Hits.bmp: PC bitmap, Windows 3.x format, 100 x 100 x 24 Fleetwood Mac-Rumours.bmp: PC bitmap, Windows 3.x format, 100 x 100 x 24 Fleetwood Mac-Tango In The Night.bmp: PC bitmap, Windows 3.x format, 100 x 100 x 24 It was generated with 'convert -thumbnail 100x100 <input> Fleetwood\ Mac-Rumours.bmp' like the others were. I've even tried cutting and pasting the artist and album name from the id3tags in case there was a typo I didn't spot. I've checked for gratuitous spaces in the id3tags too... I have no idea why it isn't finding the picture. The bitmap is at http://david.woodhou.se/Fleetwood%20Mac-Rumours.bmp This is with version 3.2 with the cabbiev2 theme. |
This task depends upon
Closed by Andree Buschmann (Buschel)
Wednesday, 27 July 2011, 08:36 GMT+2
Reason for closing: Wont Fix
Additional comments about closing: Not really a bug, but a less resilient implementation. Embedded album art is supported since a while now and is a perfect alternative.
Wednesday, 27 July 2011, 08:36 GMT+2
Reason for closing: Wont Fix
Additional comments about closing: Not really a bug, but a less resilient implementation. Embedded album art is supported since a while now and is a perfect alternative.
As for question marks, see appendix C ("Album Art") in the manual. Short version: use "_" instead of "?" in the album art file name.
=== TPE2 (Band/orchestra/accompaniment):
=== TIT2 (Title/songname/content description): The Chain (LP Version)
=== TRCK (Track number/Position in set): 7
=== TALB (Album/Movie/Show title): Rumours
=== TCON (Content type): (13)
=== TIT3 (Subtitle/Description refinement):
=== TOAL (Original album/movie/show title):
=== TCOP (Copyright message):
=== TPUB (Publisher):
=== TBPM (BPM (beats per minute)):
=== TYER (Year): 2007
=== COMM (Comments): ()[dan]:
=== TSRC (ISRC (international standard recording code)):
=== PRIV (Private frame): (unimplemented)
=== TPOS (Part of a set):
=== USLT (Unsynchronized lyric/text transcription): ()[dan]:
=== TXXX (User defined text information): (MoreInfo): CD Vol 1
=== APIC (Attached picture): ()[, 0]: image/jpeg, 0 bytes
=== TCOM (Composer): Fleetwood Mac, FLEETWOOD MAC
=== TEXT (Lyricist/Text writer):
=== TOLY (Original lyricist(s)/text writer(s)):
=== TOPE (Original artist(s)/performer(s)):
=== TPE1 (Lead performer(s)/Soloist(s)): Fleetwood Mac
*** mp3 info
MPEG1/layer III
Bitrate: 256KBps
Frequency: 44KHz
That's the issue. TPE2 is interpreted as "album artist" which takes precedence over TPE1 for album art purposes. Maybe the album art check should use artist is album artist is empty?
I might go for 'use artist if album artist doesn't find you a valid picture', rather than just 'if album art is empty'.
Thanks for the help.