NBA IE (Closes #590)
authorPhilipp Hagemeister <phihag@phihag.de>
Thu, 13 Dec 2012 20:27:57 +0000 (21:27 +0100)
committerPhilipp Hagemeister <phihag@phihag.de>
Thu, 13 Dec 2012 20:27:57 +0000 (21:27 +0100)
test/tests.json
youtube_dl/InfoExtractors.py
youtube_dl/__init__.py

index 706149bf83c539e93d43d844e4b04d5723172c0a..58e73e7e11497a6af24201173e72e001801aef23 100644 (file)
     "file": "XNDgyMDQ2NTQw_part00.flv",
     "md5": "ffe3f2e435663dc2d1eea34faeff5b5b",
     "params": { "test": false }
+  },
+  {
+    "name": "NBA",
+    "url": "http://www.nba.com/video/games/nets/2012/12/04/0021200253-okc-bkn-recap.nba/index.html",
+    "file": "0021200253-okc-bkn-recap.nba.mp4",
+    "md5": "c0edcfc37607344e2ff8f13c378c88a4"
   }
 ]
index 1b37eb648bac41ef29f6fb4b638fc669355affa4..b7fedabb2efe521fb3c75830c5d7883027427fa5 100644 (file)
@@ -3590,3 +3590,49 @@ class GooglePlusIE(InfoExtractor):
             'title':    video_title.decode('utf-8'),
             'ext':      video_extension.decode('utf-8'),
         }]
+
+class NBAIE(InfoExtractor):
+    _VALID_URL = r'^(?:https?://)?(?:watch\.|www\.)?nba\.com/(?:nba/)?video(/[^?]*)(\?.*)?$'
+    IE_NAME = u'nba'
+
+    def report_extraction(self, video_id):
+        self._downloader.to_screen(u'[%s] %s: Extracting information' % (self.IE_NAME, video_id))
+
+    def _real_extract(self, url):
+        mobj = re.match(self._VALID_URL, url)
+        if mobj is None:
+            self._downloader.trouble(u'ERROR: invalid URL: %s' % url)
+            return
+
+        video_id = mobj.group(1)
+        if video_id.endswith('/index.html'):
+            video_id = video_id[:-len('/index.html')]
+
+        self.report_extraction(video_id)
+        try:
+            urlh = compat_urllib_request.urlopen(url)
+            webpage_bytes = urlh.read()
+            webpage = webpage_bytes.decode('utf-8', 'ignore')
+        except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
+            self._downloader.trouble(u'ERROR: unable to download video info XML: %s' % compat_str(err))
+            return
+
+        video_url = u'http://ht-mobile.cdn.turner.com/nba/big' + video_id + '_nba_1280x720.mp4'
+        def _findProp(rexp, default=None):
+            m = re.search(rexp, webpage)
+            if m:
+                return unescapeHTML(m.group(1))
+            else:
+                return default
+
+        shortened_video_id = video_id.rpartition('/')[2]
+        title = _findProp(r'<meta property="og:title" content="(.*?)"', shortened_video_id).replace('NBA.com: ', '')
+        info = {
+            'id': shortened_video_id,
+            'url': video_url,
+            'ext': 'mp4',
+            'title': title,
+            'uploader_date': _findProp(r'<b>Date:</b> (.*?)</div>'),
+            'description': _findProp(r'<div class="description">(.*?)</h1>'),
+        }
+        return [info]
index d7e1a91ada0ce29df8c2f0dca23d93a8e4d43acc..b6ee2e119640196d15a26afee56f8ed92f59c6c2 100644 (file)
@@ -398,6 +398,7 @@ def gen_extractors():
         XNXXIE(),
         GooglePlusIE(),
         ArteTvIE(),
+        NBAIE(),
         GenericIE()
     ]