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.

195 lines
7.3 KiB

  1. from __future__ import unicode_literals
  2. import re
  3. from .common import InfoExtractor
  4. from ..utils import (
  5. compat_urllib_parse,
  6. ExtractorError,
  7. find_xpath_attr,
  8. fix_xml_ampersands,
  9. url_basename,
  10. RegexNotFoundError,
  11. )
  12. def _media_xml_tag(tag):
  13. return '{http://search.yahoo.com/mrss/}%s' % tag
  14. class MTVServicesInfoExtractor(InfoExtractor):
  15. @staticmethod
  16. def _id_from_uri(uri):
  17. return uri.split(':')[-1]
  18. # This was originally implemented for ComedyCentral, but it also works here
  19. @staticmethod
  20. def _transform_rtmp_url(rtmp_video_url):
  21. m = re.match(r'^rtmpe?://.*?/(?P<finalid>gsp\..+?/.*)$', rtmp_video_url)
  22. if not m:
  23. return rtmp_video_url
  24. base = 'http://mtvnmobile.vo.llnwd.net/kip0/_pxn=1+_pxI0=Ripod-h264+_pxL0=undefined+_pxM0=+_pxK=18639+_pxE=mp4/44620/mtvnorigin/'
  25. return base + m.group('finalid')
  26. def _get_thumbnail_url(self, uri, itemdoc):
  27. search_path = '%s/%s' % (_media_xml_tag('group'), _media_xml_tag('thumbnail'))
  28. thumb_node = itemdoc.find(search_path)
  29. if thumb_node is None:
  30. return None
  31. else:
  32. return thumb_node.attrib['url']
  33. def _extract_video_formats(self, mdoc):
  34. if re.match(r'.*/error_country_block\.swf$', mdoc.find('.//src').text) is not None:
  35. raise ExtractorError('This video is not available from your country.', expected=True)
  36. formats = []
  37. for rendition in mdoc.findall('.//rendition'):
  38. try:
  39. _, _, ext = rendition.attrib['type'].partition('/')
  40. rtmp_video_url = rendition.find('./src').text
  41. formats.append({'ext': ext,
  42. 'url': self._transform_rtmp_url(rtmp_video_url),
  43. 'format_id': rendition.get('bitrate'),
  44. 'width': int(rendition.get('width')),
  45. 'height': int(rendition.get('height')),
  46. })
  47. except (KeyError, TypeError):
  48. raise ExtractorError('Invalid rendition field.')
  49. return formats
  50. def _get_video_info(self, itemdoc):
  51. uri = itemdoc.find('guid').text
  52. video_id = self._id_from_uri(uri)
  53. self.report_extraction(video_id)
  54. mediagen_url = itemdoc.find('%s/%s' % (_media_xml_tag('group'), _media_xml_tag('content'))).attrib['url']
  55. # Remove the templates, like &device={device}
  56. mediagen_url = re.sub(r'&[^=]*?={.*?}(?=(&|$))', '', mediagen_url)
  57. if 'acceptMethods' not in mediagen_url:
  58. mediagen_url += '&acceptMethods=fms'
  59. mediagen_doc = self._download_xml(mediagen_url, video_id,
  60. 'Downloading video urls')
  61. description_node = itemdoc.find('description')
  62. if description_node is not None:
  63. description = description_node.text.strip()
  64. else:
  65. description = None
  66. title_el = None
  67. if title_el is None:
  68. title_el = find_xpath_attr(
  69. itemdoc, './/{http://search.yahoo.com/mrss/}category',
  70. 'scheme', 'urn:mtvn:video_title')
  71. if title_el is None:
  72. title_el = itemdoc.find('.//title')
  73. if title_el.text is None:
  74. title_el = None
  75. if title_el is None:
  76. title_el = itemdoc.find('.//{http://search.yahoo.com/mrss/}title')
  77. title = title_el.text
  78. if title is None:
  79. raise ExtractorError('Could not find video title')
  80. title = title.strip()
  81. return {
  82. 'title': title,
  83. 'formats': self._extract_video_formats(mediagen_doc),
  84. 'id': video_id,
  85. 'thumbnail': self._get_thumbnail_url(uri, itemdoc),
  86. 'description': description,
  87. }
  88. def _get_videos_info(self, uri):
  89. video_id = self._id_from_uri(uri)
  90. data = compat_urllib_parse.urlencode({'uri': uri})
  91. idoc = self._download_xml(
  92. self._FEED_URL + '?' + data, video_id,
  93. 'Downloading info', transform_source=fix_xml_ampersands)
  94. return [self._get_video_info(item) for item in idoc.findall('.//item')]
  95. def _real_extract(self, url):
  96. title = url_basename(url)
  97. webpage = self._download_webpage(url, title)
  98. try:
  99. # the url can be http://media.mtvnservices.com/fb/{mgid}.swf
  100. # or http://media.mtvnservices.com/{mgid}
  101. og_url = self._og_search_video_url(webpage)
  102. mgid = url_basename(og_url)
  103. if mgid.endswith('.swf'):
  104. mgid = mgid[:-4]
  105. except RegexNotFoundError:
  106. mgid = self._search_regex(
  107. [r'data-mgid="(.*?)"', r'swfobject.embedSWF\(".*?(mgid:.*?)"'],
  108. webpage, u'mgid')
  109. return self._get_videos_info(mgid)
  110. class MTVIE(MTVServicesInfoExtractor):
  111. _VALID_URL = r'''(?x)^https?://
  112. (?:(?:www\.)?mtv\.com/videos/.+?/(?P<videoid>[0-9]+)/[^/]+$|
  113. m\.mtv\.com/videos/video\.rbml\?.*?id=(?P<mgid>[^&]+))'''
  114. _FEED_URL = 'http://www.mtv.com/player/embed/AS3/rss/'
  115. _TESTS = [
  116. {
  117. 'url': 'http://www.mtv.com/videos/misc/853555/ours-vh1-storytellers.jhtml',
  118. 'file': '853555.mp4',
  119. 'md5': '850f3f143316b1e71fa56a4edfd6e0f8',
  120. 'info_dict': {
  121. 'title': 'Taylor Swift - "Ours (VH1 Storytellers)"',
  122. 'description': 'Album: Taylor Swift performs "Ours" for VH1 Storytellers at Harvey Mudd College.',
  123. },
  124. },
  125. {
  126. 'add_ie': ['Vevo'],
  127. 'url': 'http://www.mtv.com/videos/taylor-swift/916187/everything-has-changed-ft-ed-sheeran.jhtml',
  128. 'file': 'USCJY1331283.mp4',
  129. 'md5': '73b4e7fcadd88929292fe52c3ced8caf',
  130. 'info_dict': {
  131. 'title': 'Everything Has Changed',
  132. 'upload_date': '20130606',
  133. 'uploader': 'Taylor Swift',
  134. },
  135. 'skip': 'VEVO is only available in some countries',
  136. },
  137. ]
  138. def _get_thumbnail_url(self, uri, itemdoc):
  139. return 'http://mtv.mtvnimages.com/uri/' + uri
  140. def _real_extract(self, url):
  141. mobj = re.match(self._VALID_URL, url)
  142. video_id = mobj.group('videoid')
  143. uri = mobj.groupdict().get('mgid')
  144. if uri is None:
  145. webpage = self._download_webpage(url, video_id)
  146. # Some videos come from Vevo.com
  147. m_vevo = re.search(r'isVevoVideo = true;.*?vevoVideoId = "(.*?)";',
  148. webpage, re.DOTALL)
  149. if m_vevo:
  150. vevo_id = m_vevo.group(1);
  151. self.to_screen('Vevo video detected: %s' % vevo_id)
  152. return self.url_result('vevo:%s' % vevo_id, ie='Vevo')
  153. uri = self._html_search_regex(r'/uri/(.*?)\?', webpage, 'uri')
  154. return self._get_videos_info(uri)
  155. class MTVIggyIE(MTVServicesInfoExtractor):
  156. IE_NAME = 'mtviggy.com'
  157. _VALID_URL = r'https?://www\.mtviggy\.com/videos/.+'
  158. _TEST = {
  159. 'url': 'http://www.mtviggy.com/videos/arcade-fire-behind-the-scenes-at-the-biggest-music-experiment-yet/',
  160. 'info_dict': {
  161. 'id': '984696',
  162. 'ext': 'mp4',
  163. 'title': 'Arcade Fire: Behind the Scenes at the Biggest Music Experiment Yet',
  164. }
  165. }
  166. _FEED_URL = 'http://all.mtvworldverticals.com/feed-xml/'