You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

106 lines
3.4 KiB

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