miomio.py 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. import random
  4. from .common import InfoExtractor
  5. from ..compat import compat_urlparse
  6. from ..utils import (
  7. xpath_text,
  8. int_or_none,
  9. ExtractorError,
  10. sanitized_Request,
  11. )
  12. class MioMioIE(InfoExtractor):
  13. IE_NAME = 'miomio.tv'
  14. _VALID_URL = r'https?://(?:www\.)?miomio\.tv/watch/cc(?P<id>[0-9]+)'
  15. _TESTS = [{
  16. # "type=video" in flashvars
  17. 'url': 'http://www.miomio.tv/watch/cc88912/',
  18. 'md5': '317a5f7f6b544ce8419b784ca8edae65',
  19. 'info_dict': {
  20. 'id': '88912',
  21. 'ext': 'flv',
  22. 'title': '【SKY】字幕 铠武昭和VS平成 假面骑士大战FEAT战队 魔星字幕组 字幕',
  23. 'duration': 5923,
  24. },
  25. }, {
  26. 'url': 'http://www.miomio.tv/watch/cc184024/',
  27. 'info_dict': {
  28. 'id': '43729',
  29. 'title': '《动漫同人插画绘制》',
  30. },
  31. 'playlist_mincount': 86,
  32. 'skip': 'This video takes time too long for retrieving the URL',
  33. }, {
  34. 'url': 'http://www.miomio.tv/watch/cc173113/',
  35. 'info_dict': {
  36. 'id': '173113',
  37. 'title': 'The New Macbook 2015 上手试玩与简评'
  38. },
  39. 'playlist_mincount': 2,
  40. }, {
  41. # new 'h5' player
  42. 'url': 'http://www.miomio.tv/watch/cc273295/',
  43. 'md5': '',
  44. 'info_dict': {
  45. 'id': '273295',
  46. 'ext': 'mp4',
  47. 'title': 'アウト×デラックス 20160526',
  48. },
  49. 'params': {
  50. # intermittent HTTP 500
  51. 'skip_download': True,
  52. },
  53. }]
  54. def _extract_mioplayer(self, webpage, video_id, title, http_headers):
  55. xml_config = self._search_regex(
  56. r'flashvars="type=(?:sina|video)&amp;(.+?)&amp;',
  57. webpage, 'xml config')
  58. # skipping the following page causes lags and eventually connection drop-outs
  59. self._request_webpage(
  60. 'http://www.miomio.tv/mioplayer/mioplayerconfigfiles/xml.php?id=%s&r=%s' % (id, random.randint(100, 999)),
  61. video_id)
  62. vid_config_request = sanitized_Request(
  63. 'http://www.miomio.tv/mioplayer/mioplayerconfigfiles/sina.php?{0}'.format(xml_config),
  64. headers=http_headers)
  65. # the following xml contains the actual configuration information on the video file(s)
  66. vid_config = self._download_xml(vid_config_request, video_id)
  67. if not int_or_none(xpath_text(vid_config, 'timelength')):
  68. raise ExtractorError('Unable to load videos!', expected=True)
  69. entries = []
  70. for f in vid_config.findall('./durl'):
  71. segment_url = xpath_text(f, 'url', 'video url')
  72. if not segment_url:
  73. continue
  74. order = xpath_text(f, 'order', 'order')
  75. segment_id = video_id
  76. segment_title = title
  77. if order:
  78. segment_id += '-%s' % order
  79. segment_title += ' part %s' % order
  80. entries.append({
  81. 'id': segment_id,
  82. 'url': segment_url,
  83. 'title': segment_title,
  84. 'duration': int_or_none(xpath_text(f, 'length', 'duration'), 1000),
  85. 'http_headers': http_headers,
  86. })
  87. return entries
  88. def _real_extract(self, url):
  89. video_id = self._match_id(url)
  90. webpage = self._download_webpage(url, video_id)
  91. title = self._html_search_meta(
  92. 'description', webpage, 'title', fatal=True)
  93. mioplayer_path = self._search_regex(
  94. r'src="(/mioplayer(?:_h5)?/[^"]+)"', webpage, 'ref_path')
  95. if '_h5' in mioplayer_path:
  96. player_url = compat_urlparse.urljoin(url, mioplayer_path)
  97. player_webpage = self._download_webpage(
  98. player_url, video_id,
  99. note='Downloading player webpage', headers={'Referer': url})
  100. entries = self._parse_html5_media_entries(player_url, player_webpage)
  101. http_headers = {'Referer': player_url}
  102. else:
  103. http_headers = {'Referer': 'http://www.miomio.tv%s' % mioplayer_path}
  104. entries = self._extract_mioplayer(webpage, video_id, title, http_headers)
  105. if len(entries) == 1:
  106. segment = entries[0]
  107. segment['id'] = video_id
  108. segment['title'] = title
  109. segment['http_headers'] = http_headers
  110. return segment
  111. return {
  112. '_type': 'multi_video',
  113. 'id': video_id,
  114. 'entries': entries,
  115. 'title': title,
  116. 'http_headers': http_headers,
  117. }