NBA IE (Closes #590)
This commit is contained in:
		
							parent
							
								
									5d01a64719
								
							
						
					
					
						commit
						4cc3d07426
					
				| @ -58,5 +58,11 @@ | |||||||
|     "file": "XNDgyMDQ2NTQw_part00.flv", |     "file": "XNDgyMDQ2NTQw_part00.flv", | ||||||
|     "md5": "ffe3f2e435663dc2d1eea34faeff5b5b", |     "md5": "ffe3f2e435663dc2d1eea34faeff5b5b", | ||||||
|     "params": { "test": false } |     "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" | ||||||
|   } |   } | ||||||
| ] | ] | ||||||
|  | |||||||
| @ -3590,3 +3590,49 @@ class GooglePlusIE(InfoExtractor): | |||||||
|             'title':    video_title.decode('utf-8'), |             'title':    video_title.decode('utf-8'), | ||||||
|             'ext':      video_extension.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] | ||||||
|  | |||||||
| @ -398,6 +398,7 @@ def gen_extractors(): | |||||||
|         XNXXIE(), |         XNXXIE(), | ||||||
|         GooglePlusIE(), |         GooglePlusIE(), | ||||||
|         ArteTvIE(), |         ArteTvIE(), | ||||||
|  |         NBAIE(), | ||||||
|         GenericIE() |         GenericIE() | ||||||
|     ] |     ] | ||||||
| 
 | 
 | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user