Metadata-Version: 2.0
Name: Mopidy-Local-Images
Version: 0.3.1
Summary: Mopidy local library proxy extension for handling embedded album art
Home-page: https://github.com/tkem/mopidy-local-images
Author: Thomas Kemmer
Author-email: tkemmer@computer.org
License: Apache License, Version 2.0
Platform: UNKNOWN
Classifier: Environment :: No Input/Output (Daemon)
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Topic :: Multimedia :: Sound/Audio :: Players
Requires-Dist: setuptools
Requires-Dist: Mopidy (>=0.19)
Requires-Dist: uritools (>=0.10)

Mopidy-Local-Images
========================================================================

Mopidy-Local-Images is a Mopidy_ local library extension that allows
Web clients access to album art embedded in local media files.  It
does so by acting as a *proxy* between Mopidy's ``local scan`` command
and the actual local library provider being used.  Images are
extracted from media files and stored as individual image files while
scanning, and corresponding image URIs are inserted into Mopidy data
models.  Clients can then access these images through an included
Mopidy Web extension.  All other requests are delegated to the actual
local library provider as-is.

Album art stored in separate files is also supported.  External image
files will be considered if they reside in the same directory as the
scanned media files and file names match a configurable pattern.

Please note that support for local album art depends on whether your
client supports album images as provided by Mopidy's data model.  For
example, some clients will ignore any images provided by this
extension, and will retrieve album art from external services instead.


Installation
------------------------------------------------------------------------

Mopidy-Local-Images can be installed using pip_ by running::

    pip install Mopidy-Local-Images


Configuration
------------------------------------------------------------------------

Before starting Mopidy, you must change your configuration to switch
to using Mopidy-Local-Images as your local library provider::

  [local]
  library = images

By default, Mopidy-Local-Images delegates any requests to the standard
``json`` local library provider.  To use a third-party library, such
as `Mopidy-Local-SQLite`_, you have to set this in the
``local-images`` configuration section::

  [local-images]
  library = sqlite

Once this has been set, you need to clear and re-scan your library for
images to be extracted::

  mopidy local clear
  mopidy local scan

This extension also provides some other configuration settings, but
beware that these are subject to change for now::

  [local-images]
  enabled = true

  # the actual local library provider to use
  library = json

  # the base URI for images; change this if you want to serve images
  # using an alternative Web server, or when accessing Mopidy through a
  # reverse proxy
  base_uri = /images/

  # the directory where local image files are stored; if not set,
  # defaults to <local/data_dir>/images
  image_dir =

  # a list of file names to check for when searching for external album
  # art; may contain UNIX shell patterns, i.e. "*", "?", etc.
  album_art_files = *.jpg, *.jpeg, *.png


Project Resources
------------------------------------------------------------------------

.. image:: http://img.shields.io/pypi/v/Mopidy-Local-Images.svg?style=flat
    :target: https://pypi.python.org/pypi/Mopidy-Local-Images/
    :alt: Latest PyPI version

.. image:: http://img.shields.io/pypi/dm/Mopidy-Local-Images.svg?style=flat
    :target: https://pypi.python.org/pypi/Mopidy-Local-Images/
    :alt: Number of PyPI downloads

.. image:: http://img.shields.io/travis/tkem/mopidy-local-images/master.svg?style=flat
    :target: https://travis-ci.org/tkem/mopidy-local-images/
    :alt: Travis CI build status

.. image:: http://img.shields.io/coveralls/tkem/mopidy-local-images/master.svg?style=flat
   :target: https://coveralls.io/r/tkem/mopidy-local-images/
   :alt: Test coverage

- `Issue Tracker`_
- `Source Code`_
- `Change Log`_


License
------------------------------------------------------------------------

Copyright (c) 2014, 2015 Thomas Kemmer.

Licensed under the `Apache License, Version 2.0`_.


Known Bugs and Limitations
------------------------------------------------------------------------

With Mopidy v0.19, using this extension will slow down ``mopidy local
scan`` considerably, since every media file has to be scanned twice.
This should no longer be a problem in Mopidy v1.0 and later versions.


.. _Mopidy: http://www.mopidy.com/
.. _Mopidy-Local-SQLite: https://pypi.python.org/pypi/Mopidy-Local-SQLite/

.. _pip: https://pip.pypa.io/en/latest/

.. _Issue Tracker: https://github.com/tkem/mopidy-local-images/issues/
.. _Source Code: https://github.com/tkem/mopidy-local-images/
.. _Change Log: https://github.com/tkem/mopidy-local-images/blob/master/CHANGES.rst

.. _Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0


