| 
									
										
										
										
											2016-03-30 23:18:31 +01:00
										 |  |  | # coding: utf-8 | 
					
						
							|  |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-30 18:15:20 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-30 23:18:31 +01:00
										 |  |  | from .common import InfoExtractor | 
					
						
							| 
									
										
										
										
											2018-10-29 23:53:39 +07:00
										 |  |  | from ..utils import smuggle_url | 
					
						
							| 
									
										
										
										
											2016-03-30 23:18:31 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class CNBCIE(InfoExtractor): | 
					
						
							|  |  |  |     _VALID_URL = r'https?://video\.cnbc\.com/gallery/\?video=(?P<id>[0-9]+)' | 
					
						
							|  |  |  |     _TEST = { | 
					
						
							|  |  |  |         'url': 'http://video.cnbc.com/gallery/?video=3000503714', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': '3000503714', | 
					
						
							|  |  |  |             'ext': 'mp4', | 
					
						
							| 
									
										
										
										
											2016-03-31 00:25:11 +01:00
										 |  |  |             'title': 'Fighting zombies is big business', | 
					
						
							|  |  |  |             'description': 'md5:0c100d8e1a7947bd2feec9a5550e519e', | 
					
						
							| 
									
										
										
										
											2016-04-01 18:06:11 +01:00
										 |  |  |             'timestamp': 1459332000, | 
					
						
							|  |  |  |             'upload_date': '20160330', | 
					
						
							|  |  |  |             'uploader': 'NBCU-CNBC', | 
					
						
							| 
									
										
										
										
											2016-03-31 00:25:11 +01:00
										 |  |  |         }, | 
					
						
							|  |  |  |         'params': { | 
					
						
							|  |  |  |             # m3u8 download | 
					
						
							|  |  |  |             'skip_download': True, | 
					
						
							|  |  |  |         }, | 
					
						
							| 
									
										
										
										
											2016-03-30 23:18:31 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							|  |  |  |         video_id = self._match_id(url) | 
					
						
							|  |  |  |         return { | 
					
						
							|  |  |  |             '_type': 'url_transparent', | 
					
						
							|  |  |  |             'ie_key': 'ThePlatform', | 
					
						
							|  |  |  |             'url': smuggle_url( | 
					
						
							|  |  |  |                 'http://link.theplatform.com/s/gZWlPC/media/guid/2408950221/%s?mbr=true&manifest=m3u' % video_id, | 
					
						
							|  |  |  |                 {'force_smil_url': True}), | 
					
						
							|  |  |  |             'id': video_id, | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-07-30 18:15:20 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-29 23:53:39 +07:00
										 |  |  | class CNBCVideoIE(InfoExtractor): | 
					
						
							| 
									
										
										
										
											2018-10-30 04:57:28 +07:00
										 |  |  |     _VALID_URL = r'https?://(?:www\.)?cnbc\.com/video/(?:[^/]+/)+(?P<id>[^./?#&]+)' | 
					
						
							| 
									
										
										
										
											2018-07-30 18:15:20 +02:00
										 |  |  |     _TEST = { | 
					
						
							|  |  |  |         'url': 'https://www.cnbc.com/video/2018/07/19/trump-i-dont-necessarily-agree-with-raising-rates.html', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': '7000031301', | 
					
						
							|  |  |  |             'ext': 'mp4', | 
					
						
							| 
									
										
										
										
											2018-10-29 23:53:39 +07:00
										 |  |  |             'title': "Trump: I don't necessarily agree with raising rates", | 
					
						
							| 
									
										
										
										
											2018-07-30 18:15:20 +02:00
										 |  |  |             'description': 'md5:878d8f0b4ebb5bb1dda3514b91b49de3', | 
					
						
							|  |  |  |             'timestamp': 1531958400, | 
					
						
							|  |  |  |             'upload_date': '20180719', | 
					
						
							|  |  |  |             'uploader': 'NBCU-CNBC', | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         'params': { | 
					
						
							|  |  |  |             'skip_download': True, | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							|  |  |  |         display_id = self._match_id(url) | 
					
						
							|  |  |  |         webpage = self._download_webpage(url, display_id) | 
					
						
							| 
									
										
										
										
											2018-10-29 23:53:39 +07:00
										 |  |  |         video_id = self._search_regex( | 
					
						
							|  |  |  |             r'content_id["\']\s*:\s*["\'](\d+)', webpage, display_id, | 
					
						
							|  |  |  |             'video id') | 
					
						
							|  |  |  |         return self.url_result( | 
					
						
							|  |  |  |             'http://video.cnbc.com/gallery/?video=%s' % video_id, | 
					
						
							|  |  |  |             CNBCIE.ie_key()) |