]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/nba.py
a071378b6d1dc18cefe3d76f98c3b30d0fe8a880
1 from __future__
import unicode_literals
5 from .common
import InfoExtractor
14 class NBAIE(InfoExtractor
):
15 _VALID_URL
= r
'https?://(?:watch\.|www\.)?nba\.com/(?P<path>(?:[^/]+/)?video/(?P<id>[^?]*?))/?(?:/index\.html)?(?:\?.*)?$'
17 'url': 'http://www.nba.com/video/games/nets/2012/12/04/0021200253-okc-bkn-recap.nba/index.html',
18 'md5': '9e7729d3010a9c71506fd1248f74e4f4',
20 'id': '0021200253-okc-bkn-recap',
22 'title': 'Thunder vs. Nets',
23 'description': 'Kevin Durant scores 32 points and dishes out six assists as the Thunder beat the Nets in Brooklyn.',
25 'timestamp': 1354638466,
26 'upload_date': '20121204',
30 'skip_download': True,
33 'url': 'http://www.nba.com/video/games/hornets/2014/12/05/0021400276-nyk-cha-play5.nba/',
34 'only_matching': True,
36 'url': 'http://watch.nba.com/video/channels/playoffs/2015/05/20/0041400301-cle-atl-recap.nba',
37 'md5': 'b2b39b81cf28615ae0c3360a3f9668c4',
39 'id': '0041400301-cle-atl-recap',
41 'title': 'Hawks vs. Cavaliers Game 1',
42 'description': 'md5:8094c3498d35a9bd6b1a8c396a071b4d',
44 'timestamp': 1432134543,
45 'upload_date': '20150520',
49 def _real_extract(self
, url
):
50 path
, video_id
= re
.match(self
._VALID
_URL
, url
).groups()
51 if path
.startswith('nba/'):
53 video_info
= self
._download
_xml
('http://www.nba.com/%s.xml' % path
, video_id
)
54 video_id
= xpath_text(video_info
, 'slug')
55 title
= xpath_text(video_info
, 'headline')
56 description
= xpath_text(video_info
, 'description')
57 duration
= parse_duration(xpath_text(video_info
, 'length'))
58 timestamp
= int_or_none(xpath_attr(video_info
, 'dateCreated', 'uts'))
61 for image
in video_info
.find('images'):
63 'id': image
.attrib
.get('cut'),
65 'width': int_or_none(image
.attrib
.get('width')),
66 'height': int_or_none(image
.attrib
.get('height')),
70 for video_file
in video_info
.findall('.//file'):
71 video_url
= video_file
.text
72 if video_url
.startswith('/'):
74 if video_url
.endswith('.m3u8'):
75 formats
.extend(self
._extract
_m
3u8_formats
(video_url
, video_id
, ext
='mp4', m3u8_id
='hls', fatal
=False))
76 elif video_url
.endswith('.f4m'):
77 formats
.extend(self
._extract
_f
4m
_formats
(video_url
+ '?hdcore=3.4.1.1', video_id
, f4m_id
='hds', fatal
=False))
79 key
= video_file
.attrib
.get('bitrate')
84 mobj
= re
.search(r
'(\d+)x(\d+)(?:_(\d+))?', key
)
87 'width': int(mobj
.group(1)),
88 'height': int(mobj
.group(2)),
89 'tbr': int_or_none(mobj
.group(3)),
91 formats
.append(format_info
)
92 self
._sort
_formats
(formats
)
97 'description': description
,
99 'timestamp': timestamp
,
100 'thumbnails': thumbnails
,