Please add any questions here.

Rhythmbox FAQ

How do I set the music dir in an external device?

Create a .is_audio_player file on the device. You can set a few fields in this file to override the HAL device information like this:

audio_folders=MUSIC/,RECORDINGS/
folder_depth=2
output_formats=application/ogg,audio/x-ms-wma,audio/mpeg

but if the HAL information for your device is wrong, you should file a bug, either with your distribution or in http://bugs.freedesktop.org/, to get it fixed.

How do I check out a copy of Rhythmbox from the git repository?

user@server:~/git$ git clone git://git.gnome.org/rhythmbox

Use 'git pull' to update your checkout.

How do I build Rhythmbox from git?

user@server:~/git/rhythmbox$ ./autogen.sh
user@server:~/git/rhythmbox$ make
root@server:~/git/rhythmbox$ make install
root@server:~/git/rhythmbox$ sudo ldconfig

This installs rhythmbox into into /usr/local/. In general, it's better to install it under your home directory:

user@server:~/git/rhythmbox$ ./autogen.sh --prefix=$HOME/gnome-git/rhythmbox --disable-scrollkeeper
user@server:~/git/rhythmbox$ make
user@server:~/git/rhythmbox$ make install

Or you can just run it from the source tree:

user@server:~/git/rhythmbox$ shell/rhythmbox

Where are lyrics and artwork stored?

Lyrics are stored in ~/.cache/rhythmbox/lyrics and artwork in ~/.cache/rhythmbox/covers

From where is artwork fetched?

Rhythmbox uses Amazon to look up artwork. Depending on your locale, a different mirror is used. Currently supported are en_US, en_GB, de and jp.

If you have local image files, saved in the same directory as the audio file(s) with the filename "cover", "album", "albumart", ".folder", "folder" or "$artist - $album" Rhythmbox will use them instead of looking up a cover on Amazon.

Covers embedded in songs are currently not supported.

Why can't I change the track information (i.e. why doesn't "retagging" work)?

See Rhythmbox/TagWriting.

After importing my MP3 files, why do my tags look all wrong?

This usually happens, when your files are using a wrong charset. A lot of applications (especially older ones) created those broken ID3v1 tags. Unfortunately it is not possible to automatically detect this. But with a bit of work it can be fixed by retagging those files. You'll need Easytag for this. This works in Easytag 1.99:

Now the files should be fixed. When restarting Rhythmbox, it should rescan those files correctly. If it doesn't do this, delete them from the library and import them again.

Can I use MIDI files with Rhythmbox?

Rhythmbox uses the GStreamer media framework for actual playback and a lot of other functionality, so in general Rhythmbox plays exactly those formats that are supported by GStreamer. GStreamer, on the other hand, uses a plugin system where each format is supported by a plugin. Thus, the formats supported by GStreamer (and Rhythmbox) depends on which plugins you have installed. Different distributions may ship with a different set of plugins by default.

To look for plug-ins, go to http://gstreamer.freedesktop.org/documentation/ . The Wildmidi plugin works fine with rhythmbox.

Rhythmbox/FAQ (last edited 2009-04-22 23:36:10 by JonathanMatthew)