mirror of
https://github.com/clementine-player/Clementine
synced 2024-12-22 15:58:45 +01:00
Add bollywoodlyrics.com as lyrics provider for bollywood songs
Add hindilyrics.net
This commit is contained in:
parent
5f580f1dd9
commit
0ad40780ea
@ -11,6 +11,14 @@
|
||||
<item begin="[" end="]"/>
|
||||
</exclude>
|
||||
</provider>
|
||||
<provider name="bollywoodlyrics.com (Bollywood songs)" title="{title} Song Lyrics - BollywoodLyrics.com" charset="utf-8" url="http://www.bollywoodlyrics.com/lyric/{Title}">
|
||||
<urlFormat replace=" _@;\/"'()[]" with="-"/>
|
||||
<urlFormat replace="?" with=""/>
|
||||
<extract>
|
||||
<item begin="<div class="entry-content">" end="</div>"/>
|
||||
</extract>
|
||||
<invalidIndicator value="Couldn't find that page."/>
|
||||
</provider>
|
||||
<provider name="darklyrics.com" title ="{ARTIST} LYRICS - "{title}" ({year}) album" charset="utf-8" url="http://www.darklyrics.com/lyrics/{artist2}/{album2}.html">
|
||||
<extract>
|
||||
<item begin="<h3><a name="{track}">{track}. {Title2}</a></h3><br />" end="<h3>"/>
|
||||
@ -51,6 +59,17 @@
|
||||
<invalidIndicator value=""iTotalRecords": 0"/>
|
||||
<invalidIndicator value="lyrics not available"/>
|
||||
</provider>
|
||||
<provider name="hindilyrics.net (Bollywood songs)" title="{title} ({album})" charset="utf-8" url="http://www.hindilyrics.net/lyrics/of-{Title}.html">
|
||||
<urlFormat replace=" _@;\/"'()[]" with="%20"/>
|
||||
<urlFormat replace="?" with=""/>
|
||||
<extract>
|
||||
<item begin="<div class=nm>Movie</div>:" end="</pre>"/>
|
||||
</extract>
|
||||
<exclude>
|
||||
<item begin="<span class=" end="">"/>
|
||||
</exclude>
|
||||
<invalidIndicator value="Couldn't find that page."/>
|
||||
</provider>
|
||||
<provider name="letras.mus.br" title="" charset="utf-8" url="http://letras.terra.com.br/winamp.php?musica={title}&artista={artist}">
|
||||
<urlFormat replace="_@,;&\/"" with="_"/>
|
||||
<urlFormat replace=" " with="+"/>
|
||||
|
@ -407,6 +407,29 @@ const siteDescriptors = {
|
||||
exclude: [[' data-reactid="','">']],
|
||||
invalidIndicator: "We couldn't find that page."
|
||||
}
|
||||
"bollywoodlyrics.com (Bollywood songs)": {
|
||||
url: "http://www.bollywoodlyrics.com/lyric/{Title}",
|
||||
urlFormat: [
|
||||
{punct: " _@;\\/\"\'\(\)\[\]", rep: "-" },
|
||||
{punct: "\?", rep: "" },
|
||||
],
|
||||
title: "{title} Song Lyrics - BollywoodLyrics.com",
|
||||
charset: "utf-8",
|
||||
extract: [['<div class="entry-content">','</div>']],
|
||||
invalidIndicator: "Couldn't find that page."
|
||||
}
|
||||
"hindilyrics.net (Bollywood Songs)": {
|
||||
url: "http://www.hindilyrics.net/lyrics/of-{Title}.html",
|
||||
urlFormat: [
|
||||
{punct: " _@;\\/\"\'\(\)\[\]", rep: "%20" },
|
||||
{punct: "\?", rep: "" },
|
||||
],
|
||||
title: "{title} ({album})",
|
||||
charset: "utf-8",
|
||||
extract: [['<div class=nm>Movie</div>:','</pre>']],
|
||||
exclude: [['<span class=','">']],
|
||||
invalidIndicator: "Couldn't find that page."
|
||||
}
|
||||
}
|
||||
|
||||
// --------------------------------------------------------------------------------------------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user