youtube-dl/youtube_dl/extractor/nba.py

147 lines
4.7 KiB
Python
Raw Normal View History

from __future__ import unicode_literals
2013-06-23 20:18:00 +01:00
from .common import InfoExtractor
2014-09-04 14:06:14 +01:00
from ..utils import (
parse_duration,
int_or_none,
2014-09-04 14:06:14 +01:00
)
2013-06-23 20:18:00 +01:00
2015-10-03 12:30:05 +01:00
class NBAIE(InfoExtractor):
_VALID_URL = r'https?://(?:watch\.|www\.)?nba\.com/(?:nba/)?video/(?P<id>[^?]*?)/?(?:/index\.html)?(?:\?.*)?$'
2014-12-06 10:26:17 +00:00
_TESTS = [{
'url': 'http://www.nba.com/video/games/nets/2012/12/04/0021200253-okc-bkn-recap.nba/index.html',
'md5': '9d902940d2a127af3f7f9d2f3dc79c96',
'info_dict': {
2015-10-03 12:30:05 +01:00
'id': '0021200253-okc-bkn-recap',
2014-03-29 13:54:45 +00:00
'ext': 'mp4',
'title': 'Thunder vs. Nets',
2014-09-04 14:06:14 +01:00
'description': 'Kevin Durant scores 32 points and dishes out six assists as the Thunder beat the Nets in Brooklyn.',
'duration': 181,
2015-10-03 12:30:05 +01:00
'timestamp': 1354638466,
'upload_date': '20121204',
},
2014-12-06 10:26:17 +00:00
}, {
'url': 'http://www.nba.com/video/games/hornets/2014/12/05/0021400276-nyk-cha-play5.nba/',
'only_matching': True,
2015-10-03 12:30:05 +01:00
},{
'url': 'http://watch.nba.com/nba/video/channels/playoffs/2015/05/20/0041400301-cle-atl-recap.nba',
'md5': 'b2b39b81cf28615ae0c3360a3f9668c4',
'info_dict': {
2015-10-03 12:30:05 +01:00
'id': '0041400301-cle-atl-recap',
'ext': 'mp4',
'title': 'Hawks vs. Cavaliers Game 1',
'description': 'md5:8094c3498d35a9bd6b1a8c396a071b4d',
'duration': 228,
2015-10-03 12:30:05 +01:00
'timestamp': 1432134543,
'upload_date': '20150520',
}
2014-12-06 10:26:17 +00:00
}]
2013-06-23 20:18:00 +01:00
2015-10-03 12:30:05 +01:00
_QUALITIES = {
'420mp4': {
'width': 400,
'height': 224,
'preference': 1,
},
'416x234': {
'width': 416,
'height': 234,
'preference': 2,
},
'480x320_910': {
'width': 480,
'height': 320,
2015-10-07 06:53:19 +01:00
'preference': 3,
2015-10-03 12:30:05 +01:00
},
'nba_576x324': {
'width': 576,
'height': 324,
2015-10-07 06:53:19 +01:00
'preference': 4,
2015-10-03 12:30:05 +01:00
},
'nba_640x360': {
'width': 640,
'height': 360,
2015-10-07 06:53:19 +01:00
'preference': 5,
2015-10-03 12:30:05 +01:00
},
'640x360_664b': {
'width': 640,
'height': 360,
2015-10-07 06:53:19 +01:00
'preference': 6,
2015-10-03 12:30:05 +01:00
},
'640x360_664m': {
'width': 640,
'height': 360,
2015-10-07 06:53:19 +01:00
'preference': 7,
2015-10-03 12:30:05 +01:00
},
'768x432_996': {
'width': 768,
'height': 432,
2015-10-07 06:53:19 +01:00
'preference': 8,
2015-10-03 12:30:05 +01:00
},
'768x432_1404': {
'width': 768,
'height': 432,
2015-10-07 06:53:19 +01:00
'preference': 9,
2015-10-03 12:30:05 +01:00
},
'960x540_2104': {
'width': 960,
'height': 540,
2015-10-07 06:53:19 +01:00
'preference': 10,
2015-10-03 12:30:05 +01:00
},
'1280x720_3072': {
'width': 1280,
'height': 720,
2015-10-07 06:53:19 +01:00
'preference': 11,
2015-10-03 12:30:05 +01:00
},
}
def _real_extract(self, url):
video_id = self._match_id(url)
video_info = self._download_xml('http://www.nba.com/video/%s.xml' % video_id, video_id)
video_id = video_info.find('slug').text
title = video_info.find('headline').text
description = video_info.find('description').text
duration = parse_duration(video_info.find('length').text)
timestamp = int_or_none(video_info.find('dateCreated').attrib.get('uts'))
thumbnails = []
for image in video_info.find('images'):
thumbnails.append({
'id': image.attrib.get('cut'),
'url': image.text,
'width': int_or_none(image.attrib.get('width')),
'height': int_or_none(image.attrib.get('height')),
})
formats = []
for video_file in video_info.find('files').iter('file'):
video_url = video_file.text
2015-10-07 06:53:19 +01:00
if video_url.startswith('/'):
continue
2015-10-03 12:30:05 +01:00
if video_url.endswith('.m3u8'):
formats.extend(self._extract_m3u8_formats(video_url, video_id))
elif video_url.endswith('.f4m'):
formats.extend(self._extract_f4m_formats(video_url + '?hdcore=3.4.1.1', video_id))
else:
key = video_file.attrib.get('bitrate')
quality = self._QUALITIES[key]
formats.append({
'format_id': key,
'url': video_url,
'width': quality['width'],
'height': quality['height'],
'preference': quality['preference'],
})
self._sort_formats(formats)
return {
2015-10-03 12:30:05 +01:00
'id': video_id,
'title': title,
'description': description,
'duration': duration,
'timestamp': timestamp,
'thumbnails': thumbnails,
'formats': formats,
2013-06-23 20:18:00 +01:00
}