]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/miaopai.py
   2 from __future__ 
import unicode_literals
 
   4 from .common 
import InfoExtractor
 
   7 class MiaoPaiIE(InfoExtractor
): 
   8     _VALID_URL 
= r
'https?://(?:www\.)?miaopai\.com/show/(?P<id>[-A-Za-z0-9~_]+)' 
  10         'url': 'http://www.miaopai.com/show/n~0hO7sfV1nBEw4Y29-Hqg__.htm', 
  11         'md5': '095ed3f1cd96b821add957bdc29f845b', 
  13             'id': 'n~0hO7sfV1nBEw4Y29-Hqg__', 
  15             'title': '西游记音乐会的秒拍视频', 
  16             'thumbnail': 're:^https?://.*/n~0hO7sfV1nBEw4Y29-Hqg___m.jpg', 
  20     _USER_AGENT_IPAD 
= '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' 
  22     def _real_extract(self
, url
): 
  23         video_id 
= self
._match
_id
(url
) 
  24         webpage 
= self
._download
_webpage
( 
  25             url
, video_id
, headers
={'User-Agent': self
._USER
_AGENT
_IPAD
}) 
  27         title 
= self
._html
_search
_regex
( 
  28             r
'<title>([^<]+)</title>', webpage
, 'title') 
  29         thumbnail 
= self
._html
_search
_regex
( 
  30             r
'<div[^>]+class=(?P<q1>[\'"]).*\bvideo_img\b.*(?P=q1)[^>]+data-url=(?P<q2>[\'"])(?P
<url
>[^
\'"]+)(?P=q2)', 
  31             webpage, 'thumbnail', fatal=False, group='url') 
  32         videos = self._parse_html5_media_entries(url, webpage, video_id) 
  38             'thumbnail': thumbnail,