| 
									
										
										
										
											2013-10-10 19:37:17 +02:00
										 |  |  | # encoding: utf-8 | 
					
						
							| 
									
										
										
										
											2014-10-26 23:11:15 +01:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							| 
									
										
										
										
											2013-10-10 19:37:17 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | from .common import InfoExtractor | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class FazIE(InfoExtractor): | 
					
						
							| 
									
										
										
										
											2014-10-26 23:11:15 +01:00
										 |  |  |     IE_NAME = 'faz.net' | 
					
						
							| 
									
										
										
										
											2013-12-04 20:34:47 +07:00
										 |  |  |     _VALID_URL = r'https?://www\.faz\.net/multimedia/videos/.*?-(?P<id>\d+)\.html' | 
					
						
							| 
									
										
										
										
											2013-10-10 19:37:17 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     _TEST = { | 
					
						
							| 
									
										
										
										
											2014-10-26 23:11:15 +01:00
										 |  |  |         'url': 'http://www.faz.net/multimedia/videos/stockholm-chemie-nobelpreis-fuer-drei-amerikanische-forscher-12610585.html', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': '12610585', | 
					
						
							|  |  |  |             'ext': 'mp4', | 
					
						
							|  |  |  |             'title': 'Stockholm: Chemie-Nobelpreis für drei amerikanische Forscher', | 
					
						
							|  |  |  |             'description': 'md5:1453fbf9a0d041d985a47306192ea253', | 
					
						
							| 
									
										
										
										
											2013-10-10 19:37:17 +02:00
										 |  |  |         }, | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							| 
									
										
										
										
											2014-10-26 23:11:15 +01:00
										 |  |  |         video_id = self._match_id(url) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-10 19:37:17 +02:00
										 |  |  |         webpage = self._download_webpage(url, video_id) | 
					
						
							| 
									
										
										
										
											2014-10-26 23:11:15 +01:00
										 |  |  |         config_xml_url = self._search_regex( | 
					
						
							|  |  |  |             r'writeFLV\(\'(.+?)\',', webpage, 'config xml url') | 
					
						
							|  |  |  |         config = self._download_xml( | 
					
						
							|  |  |  |             config_xml_url, video_id, 'Downloading config xml') | 
					
						
							| 
									
										
										
										
											2013-10-10 19:37:17 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         encodings = config.find('ENCODINGS') | 
					
						
							|  |  |  |         formats = [] | 
					
						
							| 
									
										
										
										
											2014-10-26 23:11:15 +01:00
										 |  |  |         for pref, code in enumerate(['LOW', 'HIGH', 'HQ']): | 
					
						
							| 
									
										
										
										
											2013-10-10 19:37:17 +02:00
										 |  |  |             encoding = encodings.find(code) | 
					
						
							|  |  |  |             if encoding is None: | 
					
						
							|  |  |  |                 continue | 
					
						
							|  |  |  |             encoding_url = encoding.find('FILENAME').text | 
					
						
							|  |  |  |             formats.append({ | 
					
						
							|  |  |  |                 'url': encoding_url, | 
					
						
							|  |  |  |                 'format_id': code.lower(), | 
					
						
							| 
									
										
										
										
											2014-10-26 23:11:15 +01:00
										 |  |  |                 'quality': pref, | 
					
						
							| 
									
										
										
										
											2013-10-10 19:37:17 +02:00
										 |  |  |             }) | 
					
						
							| 
									
										
										
										
											2014-10-26 23:11:15 +01:00
										 |  |  |         self._sort_formats(formats) | 
					
						
							| 
									
										
										
										
											2013-10-10 19:37:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-26 23:11:15 +01:00
										 |  |  |         descr = self._html_search_regex( | 
					
						
							|  |  |  |             r'<p class="Content Copy">(.*?)</p>', webpage, 'description', fatal=False) | 
					
						
							| 
									
										
										
										
											2013-12-03 14:21:06 +01:00
										 |  |  |         return { | 
					
						
							| 
									
										
										
										
											2013-10-10 19:37:17 +02:00
										 |  |  |             'id': video_id, | 
					
						
							|  |  |  |             'title': self._og_search_title(webpage), | 
					
						
							|  |  |  |             'formats': formats, | 
					
						
							| 
									
										
										
										
											2013-10-27 14:18:55 +01:00
										 |  |  |             'description': descr, | 
					
						
							| 
									
										
										
										
											2013-10-10 19:37:17 +02:00
										 |  |  |             'thumbnail': config.find('STILL/STILL_BIG').text, | 
					
						
							|  |  |  |         } |