Browse Source

[kuwo:singer] Fix extraction

Yen Chi Hsuan 9 years ago
parent
commit
b2bd968f4b
2 changed files with 9 additions and 2 deletions
  1. 5 0
      ChangeLog
  2. 4 2
      youtube_dl/extractor/kuwo.py

+ 5 - 0
ChangeLog

@@ -1,3 +1,8 @@
+version <unreleased>
+
+Extractors
+* [kuwo:singer] Fix extraction
+
 version 2016.08.07
 
 Core

+ 4 - 2
youtube_dl/extractor/kuwo.py

@@ -4,6 +4,7 @@ from __future__ import unicode_literals
 import re
 
 from .common import InfoExtractor
+from ..compat import compat_urlparse
 from ..utils import (
     get_element_by_id,
     clean_html,
@@ -242,8 +243,9 @@ class KuwoSingerIE(InfoExtractor):
                 query={'artistId': artist_id, 'pn': page_num, 'rn': self.PAGE_SIZE})
 
             return [
-                self.url_result(song_url, 'Kuwo') for song_url in re.findall(
-                    r'<div[^>]+class="name"><a[^>]+href="(http://www\.kuwo\.cn/yinyue/\d+)',
+                self.url_result(compat_urlparse.urljoin(url, song_url), 'Kuwo')
+                for song_url in re.findall(
+                    r'<div[^>]+class="name"><a[^>]+href="(/yinyue/\d+)',
                     webpage)
             ]