mirror of
https://github.com/beetbox/beets.git
synced 2025-12-15 21:14:19 +01:00
41 lines
No EOL
1.1 KiB
ReStructuredText
41 lines
No EOL
1.1 KiB
ReStructuredText
SubsonicUpdate Plugin
|
|
=====================
|
|
|
|
``subsonicupdate`` is a very simple plugin for beets that lets you automatically
|
|
update `Subsonic`_'s index whenever you change your beets library.
|
|
|
|
.. _Subsonic: http://www.subsonic.org
|
|
|
|
To use ``subsonicupdate`` plugin, enable it in your configuration
|
|
(see :ref:`using-plugins`).
|
|
Then, you'll probably want to configure the specifics of your Subsonic server.
|
|
You can do that using a ``subsonic:`` section in your ``config.yaml``,
|
|
which looks like this::
|
|
|
|
subsonic:
|
|
host: X.X.X.X
|
|
port: 4040
|
|
user: username
|
|
pass: password
|
|
|
|
With that all in place, beets will send a Rest API to your Subsonic
|
|
server every time you change your beets library.
|
|
|
|
This plugin requires Subsonic v6.1 or higher and an active Premium license (or trial).
|
|
|
|
Configuration
|
|
-------------
|
|
|
|
The available options under the ``subsonic:`` section are:
|
|
|
|
- **host**: The Subsonic server name/IP.
|
|
- **port**: The Subsonic server port.
|
|
- **user**: The Subsonic user.
|
|
- **pass**: The Subsonic user password.
|
|
|
|
This plugin sets the following default values:
|
|
|
|
- **host**: localhost
|
|
- **port**: 4040
|
|
- **user**: admin
|
|
- **pass**: admin |