Alexander Levin | 98b7da4 | 2009-05-16 21:16:53 +0000 | [diff] [blame] | 1 | % $Id$ % |
Jonas Häggqvist | 410cbd1 | 2009-02-20 18:37:57 +0000 | [diff] [blame] | 2 | \chapter{\label{ref:album_art}Album Art} |
| 3 | \section{Introduction} |
| 4 | |
| 5 | Rockbox allows you to put the album art, or another image related to the music |
| 6 | on your \dap to display it in the PictureFlow plugin\opt{albumart}{ or in the |
| 7 | WPS}. For this feature to work, you must observe a few rules. |
| 8 | |
| 9 | \section{Limitations} |
| 10 | |
| 11 | Rockbox does not support album art embedded in your files' tags, and will |
| 12 | instead look for a picture located in the filesystem. In addition to this, the |
Robert Menes | 7d5477c | 2009-05-15 21:28:52 +0000 | [diff] [blame] | 13 | pictures must be in the BMP or JPEG formats. Rockbox does not support |
| 14 | RLE-compressed BMP files, nor does it support progressive and multi-scan |
| 15 | JPEG files. JPEG files must consist of a single scan with interleaved components, |
| 16 | as progessive and multi-scan images require much more memory to decode. |
Jonas Häggqvist | 410cbd1 | 2009-02-20 18:37:57 +0000 | [diff] [blame] | 17 | |
| 18 | \section{Where to put album art} |
| 19 | |
Alexander Levin | 6903836 | 2009-05-16 20:53:40 +0000 | [diff] [blame] | 20 | The pictures can be named a number of different ways, and placed to a number of |
Jonas Häggqvist | 410cbd1 | 2009-02-20 18:37:57 +0000 | [diff] [blame] | 21 | different locations. You can have pictures specific to the file or the album |
Alexander Levin | 6903836 | 2009-05-16 20:53:40 +0000 | [diff] [blame] | 22 | or use a generic picture. You can place the picture in the same directory |
Jonas Häggqvist | 410cbd1 | 2009-02-20 18:37:57 +0000 | [diff] [blame] | 23 | as the file, in the parent directory or in a fixed directory named |
| 24 | \fname{/.rockbox/albumart/}. The order Rockbox uses when looking for a picture |
Alexander Levin | 6903836 | 2009-05-16 20:53:40 +0000 | [diff] [blame] | 25 | is as follows (a list in braces means that those file extensions are tried in |
| 26 | that order): |
Jonas Häggqvist | 410cbd1 | 2009-02-20 18:37:57 +0000 | [diff] [blame] | 27 | |
| 28 | \begin{enumerate} |
Alexander Levin | 6903836 | 2009-05-16 20:53:40 +0000 | [diff] [blame] | 29 | \item \fname{./filename.\{jpeg,jpg,bmp\}} |
| 30 | \item \fname{./albumtitle.\{jpeg,jpg,bmp\}} |
| 31 | \item \fname{./cover.\{jpeg,jpg,bmp\}} |
Robert Menes | a96ce3b | 2009-05-15 21:41:15 +0000 | [diff] [blame] | 32 | \item \fname{./folder.jpg} |
Alexander Levin | 6903836 | 2009-05-16 20:53:40 +0000 | [diff] [blame] | 33 | \item \fname{/.rockbox/albumart/artist-albumtitle.\{jpeg,jpg,bmp\}} |
| 34 | \item \fname{../albumtitle.\{jpeg,jpg,bmp\}} |
| 35 | \item \fname{../cover.\{jpeg,jpg,bmp\}} |
Jonas Häggqvist | 410cbd1 | 2009-02-20 18:37:57 +0000 | [diff] [blame] | 36 | \end{enumerate} |
| 37 | |
| 38 | The following characters will be replaced with an underscore (\_) when looking |
| 39 | for albumtitle.bmp or artist-albumtitle.bmp: \textbackslash{} / : \textless{} |
| 40 | \textgreater{} ? * \textbar{}. Doublequotes will be replaced by single qutoes. |
| 41 | See \wikilink{AlbumArt} in the wiki for more details and programs that will |
| 42 | help you automate the process of putting album art on your \dap{}. |