miomio.py 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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. 'skip': 'Unable to load videos',
  25. }, {
  26. 'url': 'http://www.miomio.tv/watch/cc184024/',
  27. 'info_dict': {
  28. 'id': '43729',
  29. 'title': '《动漫同人插画绘制》',
  30. },
  31. 'playlist_mincount': 86,
  32. 'skip': 'Unable to load videos',
  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. 'skip': 'Unable to load videos',
  41. }, {
  42. # new 'h5' player
  43. 'url': 'http://www.miomio.tv/watch/cc273997/',
  44. 'md5': '0b27a4b4495055d826813f8c3a6b2070',
  45. 'info_dict': {
  46. 'id': '273997',
  47. 'ext': 'mp4',
  48. 'title': 'マツコの知らない世界【劇的進化SP!ビニール傘&冷凍食品2016】 1_2 - 16 05 31',
  49. },
  50. }]
  51. def _extract_mioplayer(self, webpage, video_id, title, http_headers):
  52. xml_config = self._search_regex(
  53. r'flashvars="type=(?:sina|video)&amp;(.+?)&amp;',
  54. webpage, 'xml config')
  55. # skipping the following page causes lags and eventually connection drop-outs
  56. self._request_webpage(
  57. 'http://www.miomio.tv/mioplayer/mioplayerconfigfiles/xml.php?id=%s&r=%s' % (id, random.randint(100, 999)),
  58. video_id)
  59. vid_config_request = sanitized_Request(
  60. 'http://www.miomio.tv/mioplayer/mioplayerconfigfiles/sina.php?{0}'.format(xml_config),
  61. headers=http_headers)
  62. # the following xml contains the actual configuration information on the video file(s)
  63. vid_config = self._download_xml(vid_config_request, video_id)
  64. if not int_or_none(xpath_text(vid_config, 'timelength')):
  65. raise ExtractorError('Unable to load videos!', expected=True)
  66. entries = []
  67. for f in vid_config.findall('./durl'):
  68. segment_url = xpath_text(f, 'url', 'video url')
  69. if not segment_url:
  70. continue
  71. order = xpath_text(f, 'order', 'order')
  72. segment_id = video_id
  73. segment_title = title
  74. if order:
  75. segment_id += '-%s' % order
  76. segment_title += ' part %s' % order
  77. entries.append({
  78. 'id': segment_id,
  79. 'url': segment_url,
  80. 'title': segment_title,
  81. 'duration': int_or_none(xpath_text(f, 'length', 'duration'), 1000),
  82. 'http_headers': http_headers,
  83. })
  84. return entries
  85. def _real_extract(self, url):
  86. video_id = self._match_id(url)
  87. webpage = self._download_webpage(url, video_id)
  88. title = self._html_search_meta(
  89. 'description', webpage, 'title', fatal=True)
  90. mioplayer_path = self._search_regex(
  91. r'src="(/mioplayer(?:_h5)?/[^"]+)"', webpage, 'ref_path')
  92. if '_h5' in mioplayer_path:
  93. player_url = compat_urlparse.urljoin(url, mioplayer_path)
  94. player_webpage = self._download_webpage(
  95. player_url, video_id,
  96. note='Downloading player webpage', headers={'Referer': url})
  97. entries = self._parse_html5_media_entries(player_url, player_webpage, video_id)
  98. http_headers = {'Referer': player_url}
  99. else:
  100. http_headers = {'Referer': 'http://www.miomio.tv%s' % mioplayer_path}
  101. entries = self._extract_mioplayer(webpage, video_id, title, http_headers)
  102. if len(entries) == 1:
  103. segment = entries[0]
  104. segment['id'] = video_id
  105. segment['title'] = title
  106. segment['http_headers'] = http_headers
  107. return segment
  108. return {
  109. '_type': 'multi_video',
  110. 'id': video_id,
  111. 'entries': entries,
  112. 'title': title,
  113. 'http_headers': http_headers,
  114. }