Update changelog and docs wrt. mopidy-scan

This commit is contained in:
Stein Magnus Jodal 2010-10-31 02:00:49 +02:00
parent 4b50e802d2
commit 16d44d5e36
2 changed files with 37 additions and 7 deletions

View File

@ -14,6 +14,8 @@ No description yet.
- Install ``mopidy.desktop`` file that makes Mopidy available from e.g. Gnome
application menus.
- Add :command:`mopidy-scan` command to generate ``tag_cache`` files without
any help from the original MPD server.
0.2.0 (2010-10-24)

View File

@ -31,16 +31,44 @@ file::
BACKENDS = (u'mopidy.backends.local.LocalBackend',)
Previously this backend relied purely on ``tag_cache`` files from MPD, to
remedy this the command ``mopidy-scan`` has been added. This program will scan
your current ``LOCAL_MUSIC_FOLDER`` and build a MPD compatible ``tag_cache``.
Currently the command outputs the ``tag_cache`` to ``stdout``, this means that
you will need to run ``mopidy-scan > path/to/your/tag_cache`` to actually start
using your new cache.
You may also want to change some of the ``LOCAL_*`` settings. See
:mod:`mopidy.settings`, for a full list of available settings.
.. note::
Currently, Mopidy supports using Spotify *or* local storage as a music
source. We're working on using both sources simultaneously, and will
hopefully have support for this in the 0.3 release.
Generating a tag cache
----------------------
Previously the local storage backend relied purely on ``tag_cache`` files
generated by the original MPD server. To remedy this the command
:command:`mopidy-scan` has been created. The program will scan your current
:attr:`mopidy.settings.LOCAL_MUSIC_FOLDER` and build a MPD compatible
``tag_cache``.
To make a ``tag_cache`` of your local music available for Mopidy:
#. Ensure that :attr:`mopidy.settings.LOCAL_MUSIC_FOLDER` points to where your
music is located. Check the current setting by running::
mopidy --list-settings
#. Scan your music library. Currently the command outputs the ``tag_cache`` to
``stdout``, which means that you will need to redirect the output to a file
yourself::
mopidy-scan > tag_cache
#. Move the ``tag_cache`` file to the location
:attr:`mopidy.settings.LOCAL_TAG_CACHE` is set to, or change the setting to
point to where your ``tag_cache`` file is.
#. Start Mopidy, find the music library in a client, and play some local music!
Connecting from other machines on the network
=============================================