aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/kuwo.py
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2015-07-10 23:46:44 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2015-07-10 23:46:44 +0800
commita9684c0dbf3879478fd223ce7594d58be7dffa4f (patch)
tree8f3f609148d8847b42da35e2c7c8cdfe0b6c7e03 /youtube_dl/extractor/kuwo.py
parenta31e3e7dcb9d0471d90ec8562934a144d25d7132 (diff)
downloadyoutube-dl-a9684c0dbf3879478fd223ce7594d58be7dffa4f.tar.xz
[kuwo] Add KuwoBaseIE
Diffstat (limited to 'youtube_dl/extractor/kuwo.py')
-rw-r--r--youtube_dl/extractor/kuwo.py63
1 files changed, 33 insertions, 30 deletions
diff --git a/youtube_dl/extractor/kuwo.py b/youtube_dl/extractor/kuwo.py
index 1095a26e2..928f7f62d 100644
--- a/youtube_dl/extractor/kuwo.py
+++ b/youtube_dl/extractor/kuwo.py
@@ -13,32 +13,7 @@ from ..utils import (
)
-class KuwoIE(InfoExtractor):
- IE_NAME = 'kuwo:song'
- _VALID_URL = r'http://www\.kuwo\.cn/yinyue/(?P<id>[0-9]+?)/'
- _TESTS = [{
- 'url': 'http://www.kuwo.cn/yinyue/635632/',
- 'info_dict': {
- 'id': '635632',
- 'ext': 'ape',
- 'title': '爱我别走',
- 'creator': '张震岳',
- 'upload_date': '20080122',
- 'description': 'md5:ed13f58e3c3bf3f7fd9fbc4e5a7aa75c'
- },
- }, {
- 'url': 'http://www.kuwo.cn/yinyue/6446136/',
- 'info_dict': {
- 'id': '6446136',
- 'ext': 'mp3',
- 'title': '心',
- 'creator': 'IU',
- 'upload_date': '20150518',
- },
- 'params': {
- 'format': 'mp3-320'
- },
- }]
+class KuwoBaseIE(InfoExtractor):
_FORMATS = [
{'format': 'ape', 'ext': 'ape', 'preference': 100},
{'format': 'mp3-320', 'ext': 'mp3', 'br': '320kmp3', 'abr': 320, 'preference': 80},
@@ -67,6 +42,34 @@ class KuwoIE(InfoExtractor):
self._sort_formats(formats)
return formats
+
+class KuwoIE(KuwoBaseIE):
+ IE_NAME = 'kuwo:song'
+ _VALID_URL = r'http://www\.kuwo\.cn/yinyue/(?P<id>[0-9]+?)/'
+ _TESTS = [{
+ 'url': 'http://www.kuwo.cn/yinyue/635632/',
+ 'info_dict': {
+ 'id': '635632',
+ 'ext': 'ape',
+ 'title': '爱我别走',
+ 'creator': '张震岳',
+ 'upload_date': '20080122',
+ 'description': 'md5:ed13f58e3c3bf3f7fd9fbc4e5a7aa75c'
+ },
+ }, {
+ 'url': 'http://www.kuwo.cn/yinyue/6446136/',
+ 'info_dict': {
+ 'id': '6446136',
+ 'ext': 'mp3',
+ 'title': '心',
+ 'creator': 'IU',
+ 'upload_date': '20150518',
+ },
+ 'params': {
+ 'format': 'mp3-320'
+ },
+ }]
+
def _real_extract(self, url):
song_id = self._match_id(url)
webpage = self._download_webpage(
@@ -268,10 +271,10 @@ class KuwoCategoryIE(InfoExtractor):
return self.playlist_result(entries, category_id, category_name, category_desc)
-class KuwoMvIE(KuwoIE):
+class KuwoMvIE(KuwoBaseIE):
IE_NAME = 'kuwo:mv'
_VALID_URL = r'http://www\.kuwo\.cn/mv/(?P<id>[0-9]+?)/'
- _TESTS = [{
+ _TEST = {
'url': 'http://www.kuwo.cn/mv/6480076/',
'info_dict': {
'id': '6480076',
@@ -279,8 +282,8 @@ class KuwoMvIE(KuwoIE):
'title': '我们家MV',
'creator': '2PM',
},
- }]
- _FORMATS = KuwoIE._FORMATS + [
+ }
+ _FORMATS = KuwoBaseIE._FORMATS + [
{'format': 'mkv', 'ext': 'mkv', 'preference': 250},
{'format': 'mp4', 'ext': 'mp4', 'preference': 200},
]