]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/nba.py
   1 from __future__ 
import unicode_literals
 
   3 from .common 
import InfoExtractor
 
  10 class NBAIE(InfoExtractor
): 
  11     _VALID_URL 
= r
'https?://(?:watch\.|www\.)?nba\.com/(?:nba/)?video(?P<id>/[^?]*?)/?(?:/index\.html)?(?:\?.*)?$' 
  13         'url': 'http://www.nba.com/video/games/nets/2012/12/04/0021200253-okc-bkn-recap.nba/index.html', 
  14         'md5': 'c0edcfc37607344e2ff8f13c378c88a4', 
  16             'id': '0021200253-okc-bkn-recap.nba', 
  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.', 
  23         'url': 'http://www.nba.com/video/games/hornets/2014/12/05/0021400276-nyk-cha-play5.nba/', 
  24         'only_matching': True, 
  26         'url': 'http://watch.nba.com/nba/video/channels/playoffs/2015/05/20/0041400301-cle-atl-recap.nba', 
  28             'id': '0041400301-cle-atl-recap.nba', 
  30             'title': 'NBA GAME TIME | Video: Hawks vs. Cavaliers Game 1', 
  31             'description': 'md5:8094c3498d35a9bd6b1a8c396a071b4d', 
  35             'skip_download': True, 
  39     def _real_extract(self
, url
): 
  40         video_id 
= self
._match
_id
(url
) 
  41         webpage 
= self
._download
_webpage
(url
, video_id
) 
  43         video_url 
= 'http://ht-mobile.cdn.turner.com/nba/big' + video_id 
+ '_nba_1280x720.mp4' 
  45         shortened_video_id 
= video_id
.rpartition('/')[2] 
  47             self
._og
_search
_title
(webpage
, default
=shortened_video_id
), ' : NBA.com') 
  49         description 
= self
._og
_search
_description
(webpage
) 
  50         duration_str 
= self
._html
_search
_meta
( 
  51             'duration', webpage
, 'duration', default
=None) 
  53             duration_str 
= self
._html
_search
_regex
( 
  54                 r
'Duration:</b>\s*(\d+:\d+)', webpage
, 'duration', fatal
=False) 
  55         duration 
= parse_duration(duration_str
) 
  58             'id': shortened_video_id
, 
  61             'description': description
,