mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-13 18:50:59 +01:00
[kuwo:singer] Fix extraction
This commit is contained in:
parent
4a01befb34
commit
b2bd968f4b
@ -1,3 +1,8 @@
|
|||||||
|
version <unreleased>
|
||||||
|
|
||||||
|
Extractors
|
||||||
|
* [kuwo:singer] Fix extraction
|
||||||
|
|
||||||
version 2016.08.07
|
version 2016.08.07
|
||||||
|
|
||||||
Core
|
Core
|
||||||
|
@ -4,6 +4,7 @@ from __future__ import unicode_literals
|
|||||||
import re
|
import re
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
|
from ..compat import compat_urlparse
|
||||||
from ..utils import (
|
from ..utils import (
|
||||||
get_element_by_id,
|
get_element_by_id,
|
||||||
clean_html,
|
clean_html,
|
||||||
@ -242,8 +243,9 @@ class KuwoSingerIE(InfoExtractor):
|
|||||||
query={'artistId': artist_id, 'pn': page_num, 'rn': self.PAGE_SIZE})
|
query={'artistId': artist_id, 'pn': page_num, 'rn': self.PAGE_SIZE})
|
||||||
|
|
||||||
return [
|
return [
|
||||||
self.url_result(song_url, 'Kuwo') for song_url in re.findall(
|
self.url_result(compat_urlparse.urljoin(url, song_url), 'Kuwo')
|
||||||
r'<div[^>]+class="name"><a[^>]+href="(http://www\.kuwo\.cn/yinyue/\d+)',
|
for song_url in re.findall(
|
||||||
|
r'<div[^>]+class="name"><a[^>]+href="(/yinyue/\d+)',
|
||||||
webpage)
|
webpage)
|
||||||
]
|
]
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user