mirror of
https://github.com/beetbox/beets.git
synced 2025-12-21 08:04:03 +01:00
lyrics: Re-enable genius backend (#1770)
This commit is contained in:
parent
5e3ca88d4b
commit
36ad0cf70d
3 changed files with 6 additions and 4 deletions
|
|
@ -537,7 +537,7 @@ class Google(Backend):
|
|||
|
||||
|
||||
class LyricsPlugin(plugins.BeetsPlugin):
|
||||
SOURCES = ['google', 'lyricwiki', 'lyrics.com', 'musixmatch']
|
||||
SOURCES = ['google', 'lyricwiki', 'lyrics.com', 'musixmatch', 'genius']
|
||||
SOURCE_BACKENDS = {
|
||||
'google': Google,
|
||||
'lyricwiki': LyricsWiki,
|
||||
|
|
|
|||
|
|
@ -38,6 +38,7 @@ Fixes:
|
|||
``warning_treshold``) but backwards compatibility is preserved until the next
|
||||
major version so ``warning_treshold`` will still work. Thanks to
|
||||
:user:`JesseWeinstein`. :bug:`1802` :bug:`1803`
|
||||
* :doc:`/plugins/lyrics`: The Genius backend has been re-enabled.
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -52,9 +52,10 @@ 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``, i.e., all the
|
||||
sources except for `genius`. The `google` source will be automatically
|
||||
deactivated if no ``google_API_key`` is setup.
|
||||
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.
|
||||
|
||||
Here's an example of ``config.yaml``::
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue