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.

102 lines
3.8 KiB

10 years ago
10 years ago
10 years ago
  1. from __future__ import unicode_literals
  2. import re
  3. from .common import InfoExtractor
  4. from ..utils import (
  5. parse_duration,
  6. int_or_none,
  7. xpath_text,
  8. xpath_attr,
  9. )
  10. class NBAIE(InfoExtractor):
  11. _VALID_URL = r'https?://(?:watch\.|www\.)?nba\.com/(?P<path>(?:[^/]+/)?video/(?P<id>[^?]*?))/?(?:/index\.html)?(?:\?.*)?$'
  12. _TESTS = [{
  13. 'url': 'http://www.nba.com/video/games/nets/2012/12/04/0021200253-okc-bkn-recap.nba/index.html',
  14. 'md5': '9e7729d3010a9c71506fd1248f74e4f4',
  15. 'info_dict': {
  16. 'id': '0021200253-okc-bkn-recap',
  17. 'ext': 'mp4',
  18. 'title': 'Thunder vs. Nets',
  19. 'description': 'Kevin Durant scores 32 points and dishes out six assists as the Thunder beat the Nets in Brooklyn.',
  20. 'duration': 181,
  21. 'timestamp': 1354638466,
  22. 'upload_date': '20121204',
  23. },
  24. 'params': {
  25. # m3u8 download
  26. 'skip_download': True,
  27. },
  28. }, {
  29. 'url': 'http://www.nba.com/video/games/hornets/2014/12/05/0021400276-nyk-cha-play5.nba/',
  30. 'only_matching': True,
  31. }, {
  32. 'url': 'http://watch.nba.com/video/channels/playoffs/2015/05/20/0041400301-cle-atl-recap.nba',
  33. 'md5': 'b2b39b81cf28615ae0c3360a3f9668c4',
  34. 'info_dict': {
  35. 'id': '0041400301-cle-atl-recap',
  36. 'ext': 'mp4',
  37. 'title': 'Hawks vs. Cavaliers Game 1',
  38. 'description': 'md5:8094c3498d35a9bd6b1a8c396a071b4d',
  39. 'duration': 228,
  40. 'timestamp': 1432134543,
  41. 'upload_date': '20150520',
  42. }
  43. }]
  44. def _real_extract(self, url):
  45. path, video_id = re.match(self._VALID_URL, url).groups()
  46. if path.startswith('nba/'):
  47. path = path[3:]
  48. video_info = self._download_xml('http://www.nba.com/%s.xml' % path, video_id)
  49. video_id = xpath_text(video_info, 'slug')
  50. title = xpath_text(video_info, 'headline')
  51. description = xpath_text(video_info, 'description')
  52. duration = parse_duration(xpath_text(video_info, 'length'))
  53. timestamp = int_or_none(xpath_attr(video_info, 'dateCreated', 'uts'))
  54. thumbnails = []
  55. for image in video_info.find('images'):
  56. thumbnails.append({
  57. 'id': image.attrib.get('cut'),
  58. 'url': image.text,
  59. 'width': int_or_none(image.attrib.get('width')),
  60. 'height': int_or_none(image.attrib.get('height')),
  61. })
  62. formats = []
  63. for video_file in video_info.findall('.//file'):
  64. video_url = video_file.text
  65. if video_url.startswith('/'):
  66. continue
  67. if video_url.endswith('.m3u8'):
  68. formats.extend(self._extract_m3u8_formats(video_url, video_id, ext='mp4', m3u8_id='hls', fatal=False))
  69. elif video_url.endswith('.f4m'):
  70. formats.extend(self._extract_f4m_formats(video_url + '?hdcore=3.4.1.1', video_id, f4m_id='hds', fatal=False))
  71. else:
  72. key = video_file.attrib.get('bitrate')
  73. format_info = {
  74. 'format_id': key,
  75. 'url': video_url,
  76. }
  77. mobj = re.search(r'(\d+)x(\d+)(?:_(\d+))?', key)
  78. if mobj:
  79. format_info.update({
  80. 'width': int(mobj.group(1)),
  81. 'height': int(mobj.group(2)),
  82. 'tbr': int_or_none(mobj.group(3)),
  83. })
  84. formats.append(format_info)
  85. self._sort_formats(formats)
  86. return {
  87. 'id': video_id,
  88. 'title': title,
  89. 'description': description,
  90. 'duration': duration,
  91. 'timestamp': timestamp,
  92. 'thumbnails': thumbnails,
  93. 'formats': formats,
  94. }