[Index] [TitleIndex] [WordIndex

General

Freevo is able to play a whole list of audio formats, the most important are probably mp3 and ogg. The default player is mplayer, but you can change that with the variable AUDIO_PREFERED_PLAYER in your local_conf.py.

The list AUDIO_SUFFIX tells freevo which files it should treat as audio files and with PLAYLIST_SUFFIX you determine which files should be treated as playlists. Moreover you should tell freevo, where to look for audio files:

AUDIO_ITEMS = [ ('music', '/place/of/your/music'), ('more music', '/place/of/more/music')]

If you want to use web radio, you should also put the appropriate fxd file in that list (see AudioFxd).

Audio Cds

Freevo is of course also able to play your good old audio cds. If you put a cd in one of your drives and the cd is detected as audio cd, freevo will display it in your audio menu. Just choose a title and start listening to your music. Freevo will try to fetch information about your cd (name, artists, tiltles) over cddb, if possible. If you have problems with playing music cds, check if all necessary links are there, for example /dev/cdrom should be a link to your drive. If the audio is stuttering, it may help if you use hdparm to finetune your ide drives. Maybe something like this helps:

 hdparm -d1 -a8 -u1 -c1 /dev/cdrom 

Depending on what your plugin for audio is (freevo plugins -l will help to know it), you could have to make these modifications instead to local_conf.py in order to make the audio cd stop stuttering : - remove the xine audio plugin in order to use mplayer for audio

plugin.remove('audio.xine')

and modify the MPLAYER_ARGS options : - uncomment all the lines between the brackets - remove the "-cdda speed=2" option

Covers

If you put a file named cover.jpg or cover.png in a music directory freevo will display that image for that directory instead of the usual directory icon. Moreover that cover will be displayed while playing music from that directory. It is also possible to have individual covers for each song. Just put a file named title.png or title.jpg in the directory, title must match the name of the music file. For each file freevo will first check if there is a individual cover, if that fails, it will try to use the image of the directory.

You can also tell freevo where to look for audio covers. For example:

AUDIO_COVER_FORMAT_STRINGS = [ '/covers/%(album)s', '/covers/%(artist)s-%(album)s', '/covers/%(artist)s' ]

Plugins for Audio

There are a number of additional features available for Freevo's audio center - FM radio players, cover art downloading, etc. - please see the AudioPlugins section for details.


2014-02-15 05:10