| 
									
										
										
										
											2014-03-29 11:55:12 +01:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-16 19:39:39 +02:00
										 |  |  | import re | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from .common import InfoExtractor | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class BloombergIE(InfoExtractor): | 
					
						
							| 
									
										
										
										
											2015-04-03 15:01:17 +02:00
										 |  |  |     _VALID_URL = r'https?://www\.bloomberg\.com/news/videos/[^/]+/(?P<id>[^/?#]+)' | 
					
						
							| 
									
										
										
										
											2013-09-16 19:39:39 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     _TEST = { | 
					
						
							| 
									
										
										
										
											2015-04-03 15:01:17 +02:00
										 |  |  |         'url': 'http://www.bloomberg.com/news/videos/b/aaeae121-5949-481e-a1ce-4562db6f5df2', | 
					
						
							| 
									
										
										
										
											2014-07-28 15:25:56 +02:00
										 |  |  |         # The md5 checksum changes | 
					
						
							| 
									
										
										
										
											2014-03-29 11:55:12 +01:00
										 |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': 'qurhIVlJSB6hzkVi229d8g', | 
					
						
							|  |  |  |             'ext': 'flv', | 
					
						
							|  |  |  |             'title': 'Shah\'s Presentation on Foreign-Exchange Strategies', | 
					
						
							| 
									
										
										
										
											2015-04-03 15:01:17 +02:00
										 |  |  |             'description': 'md5:a8ba0302912d03d246979735c17d2761', | 
					
						
							| 
									
										
										
										
											2013-09-16 19:39:39 +02:00
										 |  |  |         }, | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							| 
									
										
										
										
											2015-02-24 11:08:00 +01:00
										 |  |  |         name = self._match_id(url) | 
					
						
							| 
									
										
										
										
											2013-09-16 19:39:39 +02:00
										 |  |  |         webpage = self._download_webpage(url, name) | 
					
						
							| 
									
										
										
										
											2015-04-03 15:01:17 +02:00
										 |  |  |         video_id = self._search_regex(r'"bmmrId":"(.+?)"', webpage, 'id') | 
					
						
							| 
									
										
										
										
											2014-03-29 11:55:12 +01:00
										 |  |  |         title = re.sub(': Video$', '', self._og_search_title(webpage)) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-03 15:01:17 +02:00
										 |  |  |         embed_info = self._download_json( | 
					
						
							|  |  |  |             'http://www.bloomberg.com/api/embed?id=%s' % video_id, video_id) | 
					
						
							|  |  |  |         formats = [] | 
					
						
							|  |  |  |         for stream in embed_info['streams']: | 
					
						
							|  |  |  |             if stream["muxing_format"] == "TS": | 
					
						
							|  |  |  |                 formats.extend(self._extract_m3u8_formats(stream['url'], video_id)) | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 formats.extend(self._extract_f4m_formats(stream['url'], video_id)) | 
					
						
							|  |  |  |         self._sort_formats(formats) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-29 11:55:12 +01:00
										 |  |  |         return { | 
					
						
							| 
									
										
										
										
											2015-04-03 15:01:17 +02:00
										 |  |  |             'id': video_id, | 
					
						
							| 
									
										
										
										
											2014-03-29 11:55:12 +01:00
										 |  |  |             'title': title, | 
					
						
							| 
									
										
										
										
											2015-04-03 15:01:17 +02:00
										 |  |  |             'formats': formats, | 
					
						
							| 
									
										
										
										
											2014-03-29 11:55:12 +01:00
										 |  |  |             'description': self._og_search_description(webpage), | 
					
						
							|  |  |  |             'thumbnail': self._og_search_thumbnail(webpage), | 
					
						
							|  |  |  |         } |