mlb.py 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. from __future__ import unicode_literals
  2. import re
  3. from .common import InfoExtractor
  4. from ..utils import (
  5. parse_duration,
  6. parse_iso8601,
  7. find_xpath_attr,
  8. )
  9. class MLBIE(InfoExtractor):
  10. _VALID_URL = r'https?://m\.mlb\.com/(?:(?:.*?/)?video/(?:topic/[\da-z_-]+/)?v|shared/video/embed/embed\.html\?.*?\bcontent_id=)(?P<id>n?\d+)'
  11. _TESTS = [
  12. {
  13. 'url': 'http://m.mlb.com/sea/video/topic/51231442/v34698933/nymsea-ackley-robs-a-home-run-with-an-amazing-catch/?c_id=sea',
  14. 'md5': 'ff56a598c2cf411a9a38a69709e97079',
  15. 'info_dict': {
  16. 'id': '34698933',
  17. 'ext': 'mp4',
  18. 'title': "Ackley's spectacular catch",
  19. 'description': 'md5:7f5a981eb4f3cbc8daf2aeffa2215bf0',
  20. 'duration': 66,
  21. 'timestamp': 1405980600,
  22. 'upload_date': '20140721',
  23. 'thumbnail': 're:^https?://.*\.jpg$',
  24. },
  25. },
  26. {
  27. 'url': 'http://m.mlb.com/video/topic/81536970/v34496663/mianym-stanton-practices-for-the-home-run-derby',
  28. 'md5': 'd9c022c10d21f849f49c05ae12a8a7e9',
  29. 'info_dict': {
  30. 'id': '34496663',
  31. 'ext': 'mp4',
  32. 'title': 'Stanton prepares for Derby',
  33. 'description': 'md5:d00ce1e5fd9c9069e9c13ab4faedfa57',
  34. 'duration': 46,
  35. 'timestamp': 1405105800,
  36. 'upload_date': '20140711',
  37. 'thumbnail': 're:^https?://.*\.jpg$',
  38. },
  39. },
  40. {
  41. 'url': 'http://m.mlb.com/video/topic/vtp_hrd_sponsor/v34578115/hrd-cespedes-wins-2014-gillette-home-run-derby',
  42. 'md5': '0e6e73d509321e142409b695eadd541f',
  43. 'info_dict': {
  44. 'id': '34578115',
  45. 'ext': 'mp4',
  46. 'title': 'Cespedes repeats as Derby champ',
  47. 'description': 'md5:08df253ce265d4cf6fb09f581fafad07',
  48. 'duration': 488,
  49. 'timestamp': 1405399936,
  50. 'upload_date': '20140715',
  51. 'thumbnail': 're:^https?://.*\.jpg$',
  52. },
  53. },
  54. {
  55. 'url': 'http://m.mlb.com/video/v34577915/bautista-on-derby-captaining-duties-his-performance',
  56. 'md5': 'b8fd237347b844365d74ea61d4245967',
  57. 'info_dict': {
  58. 'id': '34577915',
  59. 'ext': 'mp4',
  60. 'title': 'Bautista on Home Run Derby',
  61. 'description': 'md5:b80b34031143d0986dddc64a8839f0fb',
  62. 'duration': 52,
  63. 'timestamp': 1405390722,
  64. 'upload_date': '20140715',
  65. 'thumbnail': 're:^https?://.*\.jpg$',
  66. },
  67. },
  68. {
  69. 'url': 'http://m.mlb.com/shared/video/embed/embed.html?content_id=35692085&topic_id=6479266&width=400&height=224&property=mlb',
  70. 'only_matching': True,
  71. },
  72. ]
  73. def _real_extract(self, url):
  74. mobj = re.match(self._VALID_URL, url)
  75. video_id = mobj.group('id')
  76. detail = self._download_xml(
  77. 'http://m.mlb.com/gen/multimedia/detail/%s/%s/%s/%s.xml'
  78. % (video_id[-3], video_id[-2], video_id[-1], video_id), video_id)
  79. title = detail.find('./headline').text
  80. description = detail.find('./big-blurb').text
  81. duration = parse_duration(detail.find('./duration').text)
  82. timestamp = parse_iso8601(detail.attrib['date'][:-5])
  83. thumbnails = [{
  84. 'url': thumbnail.text,
  85. } for thumbnail in detail.findall('./thumbnailScenarios/thumbnailScenario')]
  86. formats = []
  87. for media_url in detail.findall('./url'):
  88. playback_scenario = media_url.attrib['playback_scenario']
  89. fmt = {
  90. 'url': media_url.text,
  91. 'format_id': playback_scenario,
  92. }
  93. m = re.search(r'(?P<vbr>\d+)K_(?P<width>\d+)X(?P<height>\d+)', playback_scenario)
  94. if m:
  95. fmt.update({
  96. 'vbr': int(m.group('vbr')) * 1000,
  97. 'width': int(m.group('width')),
  98. 'height': int(m.group('height')),
  99. })
  100. formats.append(fmt)
  101. self._sort_formats(formats)
  102. return {
  103. 'id': video_id,
  104. 'title': title,
  105. 'description': description,
  106. 'duration': duration,
  107. 'timestamp': timestamp,
  108. 'formats': formats,
  109. 'thumbnails': thumbnails,
  110. }