File: PKG-INFO

package info (click to toggle)
mopidy-beets 3.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 188 kB
  • sloc: python: 617; makefile: 4
file content (182 lines) | stat: -rw-r--r-- 5,955 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
Metadata-Version: 1.1
Name: Mopidy-Beets
Version: 3.1.0
Summary: Beets extension for Mopidy
Home-page: https://github.com/mopidy/mopidy-beets
Author: Lars Kruse
Author-email: devel@sumpfralle.de
License: MIT
Description: ************
        Mopidy-Beets
        ************
        
        .. image:: https://img.shields.io/pypi/v/Mopidy-Beets.svg?style=flat
            :target: https://pypi.python.org/pypi/Mopidy-Beets/
            :alt: Latest PyPI version
        
        .. image:: https://img.shields.io/travis/mopidy/mopidy-beets/master.svg?style=flat
            :target: https://travis-ci.org/mopidy/mopidy-beets
            :alt: Travis CI build status
        
        .. image:: https://img.shields.io/coveralls/mopidy/mopidy-beets/master.svg?style=flat
           :target: https://coveralls.io/r/mopidy/mopidy-beets?branch=master
           :alt: Test coverage
        
        `Mopidy <http://www.mopidy.com/>`_ extension for browsing, searching and
        playing music from `Beets <http://beets.io/>`_ via Beets' web extension.
        
        
        Installation
        ============
        
        Install by running::
        
            pip install Mopidy-Beets
        
        Or, if available, install the Debian/Ubuntu package from `apt.mopidy.com
        <http://apt.mopidy.com/>`_.
        
        
        Configuration
        =============
        
        #. Setup the `Beets web plugin
           <http://beets.readthedocs.org/en/latest/plugins/web.html>`_.
        
        #. Tell Mopidy where to find the Beets web interface by adding the following to
           your ``mopidy.conf``::
        
            [beets]
            hostname = 127.0.0.1
            port = 8337
        
        #. Restart Mopidy.
        
        #. Searches in Mopidy will now return results from your Beets library.
        
        Proxy Configuration for OGG files (optional)
        --------------------------------------------
        
        You may want to configure an http proxy server in front of your beets
        installation. Otherwise you could have problems with playing OGG files and
        other formats that require seeking (in technical terms: support for http
        "Range" requests is required for these files).
        
        The following Nginx configuration snippet is sufficient::
        
            server {
                listen 127.0.0.1:8889;
                root /usr/share/beets/beetsplug/web;
                server_name beets.local;
                location / {
                    proxy_pass http://localhost:8888;
                    # this statement forces Nginx to emulate "Range" responses
                    proxy_force_ranges on;
                }
            }
        
        Now you should change the mopidy configuration accordingly to point to the
        Nginx port above intead of the Beets port. Afterwards mopidy will be able to
        play file formats that require seeking.
        
        
        Usage
        =====
        
        #. Run ``beet web`` to start the Beets web interface.
        
        #. Start Mopidy and access your Beets library via any Mopidy client:
        
           * Browse your collection by album
        
           * Search for tracks or albums
        
           * Let the music play!
        
        
        Project resources
        =================
        
        - `Source code <https://github.com/mopidy/mopidy-beets>`_
        - `Issue tracker <https://github.com/mopidy/mopidy-beets/issues>`_
        
        
        Credits
        =======
        
        - Original author: `Janez Troha <https://github.com/dz0ny>`_
        - Current maintainer: `Lars Kruse <devel@sumpfralle.de>`_
        - `Contributors <https://github.com/mopidy/mopidy-beets/graphs/contributors>`_
        
        
        Changelog
        =========
        
        v3.1.0 (2016-11-23)
        -------------------
        
        - Fix handling of non-ascii characters in album titles and artist names
        
        - Fix handling of empty titles and names
        
        - Reduce ressource consumption of string matching API requests
        
        v3.0.0 (2016-05-28)
        -------------------
        
        - Support browsing albums by artist, genre and year
        
        - Improved search (more categories, more precise)
        
        - Align with Mopidy's current extension guidelines
        
        v2.0.0 (2015-03-25)
        -------------------
        
        - Require Mopidy >= 1.0.
        
        - Update to work with new playback API in Mopidy 1.0.
        
        - Update to work with new backend search API in Mopidy 1.0.
        
        v1.1.0 (2014-01-20)
        -------------------
        
        - Require Requests >= 2.0.
        
        - Updated extension and backend APIs to match Mopidy 0.18.
        
        v1.0.4 (2013-12-15)
        -------------------
        
        - Require Requests >= 1.0, as 0.x does not seem to be enough. (Fixes: #7)
        
        - Remove hacks for Python 2.6 compatibility.
        
        - Change search field ``track`` to ``track_name`` for compatibility with
          Mopidy 0.17. (Fixes: mopidy/mopidy#610)
        
        v1.0.3 (2013-11-02)
        -------------------
        
        - Properly encode search queries containing non-ASCII chars.
        
        - Rename logger to ``mopidy_beets``.
        
        v1.0.2 (2013-04-30)
        -------------------
        
        - Fix search.
        
        v1.0.1 (2013-04-28)
        -------------------
        
        - Initial release.
        
Platform: UNKNOWN
Classifier: Environment :: No Input/Output (Daemon)
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Topic :: Multimedia :: Sound/Audio :: Players