miomio.py 4.6 KB

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