diff options
| author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-02-21 18:20:55 +0800 | 
|---|---|---|
| committer | Yen Chi Hsuan <yan12125@gmail.com> | 2016-02-23 13:11:20 +0800 | 
| commit | 86a7dbe66e9aed051daa8c19a1ba8b860959a30a (patch) | |
| tree | 702fce16862f8c9e2be9caad5be0c2e470cd7d8c | |
| parent | b43a7a92cdd7e85021f4e4e177b26d982195da31 (diff) | |
[nba] Support non-video/ pages
Fixes #8589
| -rw-r--r-- | youtube_dl/extractor/nba.py | 30 | 
1 files changed, 27 insertions, 3 deletions
| diff --git a/youtube_dl/extractor/nba.py b/youtube_dl/extractor/nba.py index a071378b6..87b38c4c7 100644 --- a/youtube_dl/extractor/nba.py +++ b/youtube_dl/extractor/nba.py @@ -1,18 +1,20 @@  from __future__ import unicode_literals +import os.path  import re  from .common import InfoExtractor  from ..utils import ( -    parse_duration,      int_or_none, +    parse_duration, +    remove_start,      xpath_text,      xpath_attr,  )  class NBAIE(InfoExtractor): -    _VALID_URL = r'https?://(?:watch\.|www\.)?nba\.com/(?P<path>(?:[^/]+/)?video/(?P<id>[^?]*?))/?(?:/index\.html)?(?:\?.*)?$' +    _VALID_URL = r'https?://(?:watch\.|www\.)?nba\.com/(?P<path>(?:[^/]+/)+(?P<id>[^?]*?))/?(?:/index\.html)?(?:\?.*)?$'      _TESTS = [{          'url': 'http://www.nba.com/video/games/nets/2012/12/04/0021200253-okc-bkn-recap.nba/index.html',          'md5': '9e7729d3010a9c71506fd1248f74e4f4', @@ -44,14 +46,36 @@ class NBAIE(InfoExtractor):              'timestamp': 1432134543,              'upload_date': '20150520',          } +    }, { +        'url': 'http://www.nba.com/clippers/news/doc-rivers-were-not-trading-blake', +        'info_dict': { +            'id': '1455672027478-Doc_Feb16_720', +            'ext': 'mp4', +            'title': 'Practice: Doc Rivers - 2/16/16', +            'description': 'Head Coach Doc Rivers addresses the media following practice.', +            'upload_date': '20160217', +            'timestamp': 1455672000, +        }, +        'params': { +            # m3u8 download +            'skip_download': True, +        },      }]      def _real_extract(self, url):          path, video_id = re.match(self._VALID_URL, url).groups()          if path.startswith('nba/'):              path = path[3:] + +        if 'video/' not in path: +            webpage = self._download_webpage(url, video_id) +            path = remove_start(self._search_regex(r'data-videoid="([^"]+)"', webpage, 'video id'), '/') +            # See prepareContentId() of pkgCvp.js +            if path.startswith('video/teams'): +                path = 'video/channels/proxy/' + path[6:] +          video_info = self._download_xml('http://www.nba.com/%s.xml' % path, video_id) -        video_id = xpath_text(video_info, 'slug') +        video_id = os.path.splitext(xpath_text(video_info, 'slug'))[0]          title = xpath_text(video_info, 'headline')          description = xpath_text(video_info, 'description')          duration = parse_duration(xpath_text(video_info, 'length')) | 
