| 
									
										
										
										
											2016-10-02 13:39:18 +02:00
										 |  |  | # coding: utf-8 | 
					
						
							| 
									
										
										
										
											2014-10-26 23:11:15 +01:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							| 
									
										
										
										
											2013-10-10 19:37:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-24 18:42:41 +01:00
										 |  |  | import re | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-10 19:37:17 +02:00
										 |  |  | from .common import InfoExtractor | 
					
						
							| 
									
										
										
										
											2017-11-24 18:42:41 +01:00
										 |  |  | from ..compat import compat_etree_fromstring | 
					
						
							| 
									
										
										
										
											2015-12-20 21:38:30 +01:00
										 |  |  | from ..utils import ( | 
					
						
							|  |  |  |     xpath_element, | 
					
						
							|  |  |  |     xpath_text, | 
					
						
							|  |  |  |     int_or_none, | 
					
						
							|  |  |  | ) | 
					
						
							| 
									
										
										
										
											2013-10-10 19:37:17 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class FazIE(InfoExtractor): | 
					
						
							| 
									
										
										
										
											2014-10-26 23:11:15 +01:00
										 |  |  |     IE_NAME = 'faz.net' | 
					
						
							| 
									
										
										
										
											2015-06-22 20:11:15 +06:00
										 |  |  |     _VALID_URL = r'https?://(?:www\.)?faz\.net/(?:[^/]+/)*.*?-(?P<id>\d+)\.html' | 
					
						
							| 
									
										
										
										
											2013-10-10 19:37:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-22 20:11:15 +06:00
										 |  |  |     _TESTS = [{ | 
					
						
							| 
									
										
										
										
											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
										 |  |  |         }, | 
					
						
							| 
									
										
										
										
											2015-06-22 20:11:15 +06:00
										 |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://www.faz.net/aktuell/politik/berlin-gabriel-besteht-zerreissprobe-ueber-datenspeicherung-13659345.html', | 
					
						
							|  |  |  |         'only_matching': True, | 
					
						
							|  |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://www.faz.net/berlin-gabriel-besteht-zerreissprobe-ueber-datenspeicherung-13659345.html', | 
					
						
							|  |  |  |         'only_matching': True, | 
					
						
							|  |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://www.faz.net/-13659345.html', | 
					
						
							|  |  |  |         'only_matching': True, | 
					
						
							|  |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://www.faz.net/aktuell/politik/-13659345.html', | 
					
						
							|  |  |  |         'only_matching': True, | 
					
						
							|  |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://www.faz.net/foobarblafasel-13659345.html', | 
					
						
							|  |  |  |         'only_matching': True, | 
					
						
							|  |  |  |     }] | 
					
						
							| 
									
										
										
										
											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) | 
					
						
							| 
									
										
										
										
											2015-12-20 21:38:30 +01:00
										 |  |  |         description = self._og_search_description(webpage) | 
					
						
							| 
									
										
										
										
											2017-11-24 18:42:41 +01:00
										 |  |  |         media = self._html_search_regex( | 
					
						
							|  |  |  |             r"data-videojs-media='([^']+)", | 
					
						
							|  |  |  |             webpage, 'media') | 
					
						
							|  |  |  |         if media == 'extern': | 
					
						
							|  |  |  |             perform_url = self._search_regex( | 
					
						
							|  |  |  |                 r"<iframe[^>]+?src='((?:http:)?//player\.performgroup\.com/eplayer/eplayer\.html#/?[0-9a-f]{26}\.[0-9a-z]{26})", | 
					
						
							|  |  |  |                 webpage, 'perform url') | 
					
						
							|  |  |  |             return self.url_result(perform_url) | 
					
						
							|  |  |  |         config = compat_etree_fromstring(media) | 
					
						
							| 
									
										
										
										
											2013-10-10 19:37:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-20 21:38:30 +01:00
										 |  |  |         encodings = xpath_element(config, 'ENCODINGS', 'encodings', True) | 
					
						
							| 
									
										
										
										
											2013-10-10 19:37:17 +02:00
										 |  |  |         formats = [] | 
					
						
							| 
									
										
										
										
											2014-10-26 23:11:15 +01:00
										 |  |  |         for pref, code in enumerate(['LOW', 'HIGH', 'HQ']): | 
					
						
							| 
									
										
										
										
											2015-12-20 21:38:30 +01:00
										 |  |  |             encoding = xpath_element(encodings, code) | 
					
						
							| 
									
										
										
										
											2016-02-20 14:11:44 +01:00
										 |  |  |             if encoding is not None: | 
					
						
							| 
									
										
										
										
											2015-12-20 21:38:30 +01:00
										 |  |  |                 encoding_url = xpath_text(encoding, 'FILENAME') | 
					
						
							|  |  |  |                 if encoding_url: | 
					
						
							| 
									
										
										
										
											2017-11-24 18:42:41 +01:00
										 |  |  |                     tbr = xpath_text(encoding, 'AVERAGEBITRATE', 1000) | 
					
						
							|  |  |  |                     if tbr: | 
					
						
							|  |  |  |                         tbr = int_or_none(tbr.replace(',', '.')) | 
					
						
							|  |  |  |                     f = { | 
					
						
							| 
									
										
										
										
											2015-12-20 21:38:30 +01:00
										 |  |  |                         'url': encoding_url, | 
					
						
							|  |  |  |                         'format_id': code.lower(), | 
					
						
							|  |  |  |                         'quality': pref, | 
					
						
							| 
									
										
										
										
											2017-11-24 18:42:41 +01:00
										 |  |  |                         'tbr': tbr, | 
					
						
							|  |  |  |                         'vcodec': xpath_text(encoding, 'CODEC'), | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     mobj = re.search(r'(\d+)x(\d+)_(\d+)\.mp4', encoding_url) | 
					
						
							|  |  |  |                     if mobj: | 
					
						
							|  |  |  |                         f.update({ | 
					
						
							|  |  |  |                             'width': int(mobj.group(1)), | 
					
						
							|  |  |  |                             'height': int(mobj.group(2)), | 
					
						
							|  |  |  |                             'tbr': tbr or int(mobj.group(3)), | 
					
						
							|  |  |  |                         }) | 
					
						
							|  |  |  |                     formats.append(f) | 
					
						
							| 
									
										
										
										
											2014-10-26 23:11:15 +01:00
										 |  |  |         self._sort_formats(formats) | 
					
						
							| 
									
										
										
										
											2013-10-10 19:37:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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, | 
					
						
							| 
									
										
										
										
											2015-12-20 21:38:30 +01:00
										 |  |  |             'description': description.strip() if description else None, | 
					
						
							|  |  |  |             'thumbnail': xpath_text(config, 'STILL/STILL_BIG'), | 
					
						
							|  |  |  |             'duration': int_or_none(xpath_text(config, 'DURATION')), | 
					
						
							| 
									
										
										
										
											2013-10-10 19:37:17 +02:00
										 |  |  |         } |