mirror of
https://github.com/beetbox/beets.git
synced 2025-12-22 00:23:33 +01:00
lyrics: Disable Genius backend by default (#1770)
This commit is contained in:
parent
1a2ffd0426
commit
a976c371f6
3 changed files with 6 additions and 5 deletions
|
|
@ -537,7 +537,7 @@ class Google(Backend):
|
|||
|
||||
|
||||
class LyricsPlugin(plugins.BeetsPlugin):
|
||||
SOURCES = ['google', 'lyricwiki', 'lyrics.com', 'musixmatch', 'genius']
|
||||
SOURCES = ['google', 'lyricwiki', 'lyrics.com', 'musixmatch']
|
||||
SOURCE_BACKENDS = {
|
||||
'google': Google,
|
||||
'lyricwiki': LyricsWiki,
|
||||
|
|
|
|||
|
|
@ -95,7 +95,8 @@ Fixes:
|
|||
* Possibly allow flexible attributes to be used with the ``%aunique`` template
|
||||
function. :bug:`1775`
|
||||
* :doc:`/plugins/lyrics`: The Genius backend is now more robust to
|
||||
communication errors. :bug:`1770`
|
||||
communication errors. The backend has also been disabled by default, since
|
||||
the API it depends on is currently down. :bug:`1770`
|
||||
|
||||
.. _Emby Server: http://emby.media
|
||||
|
||||
|
|
|
|||
|
|
@ -52,9 +52,9 @@ configuration file. The available options are:
|
|||
sources known to be scrapeable.
|
||||
- **sources**: List of sources to search for lyrics. An asterisk ``*`` expands
|
||||
to all available sources.
|
||||
Default: ``google lyricwiki lyrics.com musixmatch genius``, i.e., all
|
||||
sources. The *google* source will be automatically deactivated if no
|
||||
``google_API_key`` is setup.
|
||||
Default: ``google lyricwiki lyrics.com musixmatch``, i.e., all the
|
||||
sources except for `genius`. The `google` source will be automatically
|
||||
deactivated if no ``google_API_key`` is setup.
|
||||
|
||||
Here's an example of ``config.yaml``::
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue