X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Fnba.py;h=a071378b6d1dc18cefe3d76f98c3b30d0fe8a880;hb=0e1b1a011d1772bc1a7069bad8ad71a53798a212;hp=77a3b49ef09adedfa150264a68b00992b273c94f;hpb=9c117d345ff05da2d4b107881cc387657208b76e;p=youtube-dl diff --git a/youtube_dl/extractor/nba.py b/youtube_dl/extractor/nba.py index 77a3b49ef..a071378b6 100644 --- a/youtube_dl/extractor/nba.py +++ b/youtube_dl/extractor/nba.py @@ -18,13 +18,17 @@ class NBAIE(InfoExtractor): 'md5': '9e7729d3010a9c71506fd1248f74e4f4', 'info_dict': { 'id': '0021200253-okc-bkn-recap', - 'ext': 'flv', + 'ext': 'mp4', 'title': 'Thunder vs. Nets', 'description': 'Kevin Durant scores 32 points and dishes out six assists as the Thunder beat the Nets in Brooklyn.', 'duration': 181, 'timestamp': 1354638466, 'upload_date': '20121204', }, + 'params': { + # m3u8 download + 'skip_download': True, + }, }, { 'url': 'http://www.nba.com/video/games/hornets/2014/12/05/0021400276-nyk-cha-play5.nba/', 'only_matching': True, @@ -44,6 +48,8 @@ class NBAIE(InfoExtractor): def _real_extract(self, url): path, video_id = re.match(self._VALID_URL, url).groups() + if path.startswith('nba/'): + path = path[3:] video_info = self._download_xml('http://www.nba.com/%s.xml' % path, video_id) video_id = xpath_text(video_info, 'slug') title = xpath_text(video_info, 'headline') @@ -61,24 +67,28 @@ class NBAIE(InfoExtractor): }) formats = [] - for video_file in video_info.find('files').iter('file'): + for video_file in video_info.findall('.//file'): video_url = video_file.text if video_url.startswith('/'): continue if video_url.endswith('.m3u8'): - formats.extend(self._extract_m3u8_formats(video_url, video_id, m3u8_id='hls')) + formats.extend(self._extract_m3u8_formats(video_url, video_id, ext='mp4', m3u8_id='hls', fatal=False)) elif video_url.endswith('.f4m'): - formats.extend(self._extract_f4m_formats(video_url + '?hdcore=3.4.1.1', video_id, f4m_id='hds')) + formats.extend(self._extract_f4m_formats(video_url + '?hdcore=3.4.1.1', video_id, f4m_id='hds', fatal=False)) else: key = video_file.attrib.get('bitrate') - width, height, bitrate = re.search(r'(\d+)x(\d+)(?:_(\d+))?', key).groups() - formats.append({ + format_info = { 'format_id': key, 'url': video_url, - 'width': int_or_none(width), - 'height': int_or_none(height), - 'tbr': int_or_none(bitrate), - }) + } + mobj = re.search(r'(\d+)x(\d+)(?:_(\d+))?', key) + if mobj: + format_info.update({ + 'width': int(mobj.group(1)), + 'height': int(mobj.group(2)), + 'tbr': int_or_none(mobj.group(3)), + }) + formats.append(format_info) self._sort_formats(formats) return {