Commit Graph

20 Commits

Author SHA1 Message Date
Marcus Müller 2a14ec9d4d Lyrics Providers: Remove unreachable ones
This was determined programmatically by means of trying to do a simple
HTTP request to / of any of the URLs given:

```python
from lxml import etree
from urllib import parse
import requests
doc = etree.parse("ultimate_providers.xml")
root = doc.getroot()
for provider in root:
    parsed_url = parse.urlparse(provider.get("url"))
    url = f"{parsed_url.scheme}://{parsed_url.netloc}/"
    try:
        requests.head(url, timeout=5)
    except Exception as e:
        print(parsed_url.netloc)
```

Note that these were also removed from songinfoview as present, and from
outgoingdatacreator. The two lists there were found to be inconsistent,
but this isn't subject of this PR.

Signed-off-by: Marcus Müller <marcus_clementine@baseband.digital>
2023-09-12 13:33:01 +01:00
luz.paz fb93ae4b02 Fix misc. source comment typos
Typos found via `codespell`
2019-08-21 23:43:16 -04:00
aqua36 c4d6424e96 ultimate_providers.xml: now handles colon correctly for genius.com (#6269) 2019-01-24 12:00:46 +00:00
Dmitriy Bogdanov a82cc2f8a6 Update lyrics.com lyrics provider
* Fix "not found" detection.
* Also exclude footer.
2019-01-21 09:02:58 +00:00
aqua36 6f3032a1ec add genius.com as lyrics provider (#6073) 2018-06-04 09:55:09 +01:00
John Maguire d8135a96d0 Update letras lyrics site
Fixes #5802
2017-08-07 17:43:33 +01:00
ZedPea 19b51111f8 Update lyrics.wikia parsing (#5773) 2017-06-27 16:00:54 +10:00
Dmitriy Bogdanov 7e9f9802b0 Update AZLyrics parsing rule 2016-04-09 13:55:44 +01:00
narunlifescience 0ad40780ea Add bollywoodlyrics.com as lyrics provider for bollywood songs
Add hindilyrics.net
2015-11-15 20:30:57 -06:00
Eduard Braun 12ac4ae063 Add Musixmatch as lyrics provider 2015-09-21 22:17:32 +02:00
obscenelysad 048ee427be Update ultimate_providers.xml
Tekstowo.pl offers lyric in original track language and polish translation. I just added polish translation as another provider based on tekstowo.pl
2015-08-30 04:33:20 +02:00
cako 3b73103d2f Fixed #4091 - Reverted letras.mus.br to utf-8 2015-08-01 15:13:28 +01:00
Yikei Lu 1692464917 Update AZLyrics 2015-02-21 18:00:57 +09:00
Max Bo 3ab81e9bec Fix sites.js formatting, ultimate_providers.xml update 2014-08-11 19:44:10 +06:00
Paweł Szymański 6e8cfc7762 Add an Encyclopaedia Metallum lyrics provider. Fixes issue 3568 2013-12-03 20:21:52 +11:00
John Maguire 16b9faca9a Update lyrics parsing for tekstowo.pl.
Fixes issue #3303
2012-11-21 12:10:39 +01:00
Paweł Szymański 051c543373 Add darklyrics support and do {field} replacement on extract rules as well as URLs.
Fixes issue 1889
2012-02-12 16:08:41 +00:00
David Sansome 5488b37447 Fix vagalume lyrics. Thanks ikojba 2011-06-09 16:32:45 +00:00
David Sansome 1d374078a1 Get lyrics from letras.mus.br. Fixes issue #910 2010-11-21 16:10:24 +00:00
David Sansome 4f1a4fe39a Some initial lyrics support. Scrapes all the sites that are supported by Amarok's Ultimate Lyrics script. No GUI or configuration yet. 2010-09-26 14:21:23 +00:00