Merge branch 'miaopai' of https://github.com/xyb/youtube-dl into xyb-miaopai
authorYen Chi Hsuan <yan12125@gmail.com>
Wed, 7 Sep 2016 16:08:02 +0000 (00:08 +0800)
committerYen Chi Hsuan <yan12125@gmail.com>
Wed, 7 Sep 2016 16:08:02 +0000 (00:08 +0800)
youtube_dl/extractor/extractors.py
youtube_dl/extractor/miaopai.py [new file with mode: 0644]

index 9fe824c6799a671c39ebdc062941cdbb0fd17bff..522ef7d8bd2864bce610b786001dd242bc7ea25b 100644 (file)
@@ -476,6 +476,7 @@ from .metacafe import MetacafeIE
 from .metacritic import MetacriticIE
 from .mgoon import MgoonIE
 from .mgtv import MGTVIE
+from .miaopai import MiaoPaiIE
 from .microsoftvirtualacademy import (
     MicrosoftVirtualAcademyIE,
     MicrosoftVirtualAcademyCourseIE,
diff --git a/youtube_dl/extractor/miaopai.py b/youtube_dl/extractor/miaopai.py
new file mode 100644 (file)
index 0000000..2477d10
--- /dev/null
@@ -0,0 +1,44 @@
+# coding: utf-8
+from __future__ import unicode_literals
+
+from .common import InfoExtractor
+from ..utils import sanitized_Request
+
+
+class MiaoPaiIE(InfoExtractor):
+    _VALID_URL = r'https?://(?:www\.)?miaopai\.com/show/(?P<id>[-A-Za-z0-9~_]+).htm'
+    _TEST = {
+        'url': 'http://www.miaopai.com/show/n~0hO7sfV1nBEw4Y29-Hqg__.htm',
+        'md5': '095ed3f1cd96b821add957bdc29f845b',
+        'info_dict': {
+            'id': 'n~0hO7sfV1nBEw4Y29-Hqg__',
+            'ext': 'mp4',
+            'title': '西游记音乐会的秒拍视频',
+            'thumbnail': 're:^https?://.*/n~0hO7sfV1nBEw4Y29-Hqg___m.jpg',
+        }
+    }
+
+    _USER_AGENT_IPAD = 'User-Agent:Mozilla/5.0 ' \
+                       '(iPad; CPU OS 9_1 like Mac OS X) ' \
+                       'AppleWebKit/601.1.46 (KHTML, like Gecko) ' \
+                       'Version/9.0 Mobile/13B143 Safari/601.1'
+
+    def _real_extract(self, url):
+        video_id = self._match_id(url)
+        request = sanitized_Request(url)
+        request.add_header('User-Agent', self._USER_AGENT_IPAD)
+        webpage = self._download_webpage(request, video_id)
+
+        title = self._html_search_regex(r'<title>([^<]*)</title>',
+                                        webpage,
+                                        'title')
+        regex = r"""<div *class=['"]video_img[^>]*data-url=['"]([^'"]*\.jpg)['"]"""
+        thumbnail = self._html_search_regex(regex, webpage, '')
+        videos = self._parse_html5_media_entries(url, webpage, video_id)
+        info = videos[0]
+
+        info.update({'id': video_id,
+                     'title': title,
+                     'thumbnail': thumbnail,
+                     })
+        return info