| 
									
										
										
										
											2016-10-02 13:39:18 +02:00
										 |  |  | # coding: utf-8 | 
					
						
							| 
									
										
										
										
											2014-04-16 15:45:05 +02:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							| 
									
										
										
										
											2016-09-07 17:29:06 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-16 15:45:05 +02:00
										 |  |  | import re | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from .common import InfoExtractor | 
					
						
							| 
									
										
										
										
											2015-11-14 05:54:16 +06:00
										 |  |  | from .brightcove import BrightcoveLegacyIE | 
					
						
							| 
									
										
										
										
											2016-09-07 17:29:06 +01:00
										 |  |  | from ..compat import ( | 
					
						
							|  |  |  |     compat_parse_qs, | 
					
						
							|  |  |  |     compat_urlparse, | 
					
						
							|  |  |  | ) | 
					
						
							| 
									
										
										
										
											2017-03-17 09:53:44 +01:00
										 |  |  | from ..utils import smuggle_url | 
					
						
							| 
									
										
										
										
											2014-04-16 20:27:33 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-17 09:53:44 +01:00
										 |  |  | class DiscoveryNetworksDeIE(InfoExtractor): | 
					
						
							|  |  |  |     _VALID_URL = r'https?://(?:www\.)?(?:discovery|tlc|animalplanet|dmax)\.de/(?:.*#(?P<id>\d+)|(?:[^/]+/)*videos/(?P<title>[^/?#]+))' | 
					
						
							| 
									
										
										
										
											2014-04-16 15:45:05 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-17 09:53:44 +01:00
										 |  |  |     _TESTS = [{ | 
					
						
							| 
									
										
										
										
											2014-04-16 15:45:05 +02:00
										 |  |  |         'url': 'http://www.tlc.de/sendungen/breaking-amish/videos/#3235167922001', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': '3235167922001', | 
					
						
							|  |  |  |             'ext': 'mp4', | 
					
						
							|  |  |  |             'title': 'Breaking Amish: Die Welt da draußen', | 
					
						
							| 
									
										
										
										
											2014-11-23 22:21:46 +01:00
										 |  |  |             'description': ( | 
					
						
							|  |  |  |                 'Vier Amische und eine Mennonitin wagen in New York' | 
					
						
							| 
									
										
										
										
											2014-04-16 15:45:05 +02:00
										 |  |  |                 '  den Sprung in ein komplett anderes Leben. Begleitet sie auf' | 
					
						
							| 
									
										
										
										
											2014-11-23 22:21:46 +01:00
										 |  |  |                 ' ihrem spannenden Weg.'), | 
					
						
							| 
									
										
										
										
											2016-03-14 21:53:00 +01:00
										 |  |  |             'timestamp': 1396598084, | 
					
						
							|  |  |  |             'upload_date': '20140404', | 
					
						
							|  |  |  |             'uploader_id': '1659832546', | 
					
						
							| 
									
										
										
										
											2014-04-16 15:45:05 +02:00
										 |  |  |         }, | 
					
						
							| 
									
										
										
										
											2017-03-17 09:53:44 +01:00
										 |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://www.dmax.de/programme/storage-hunters-uk/videos/storage-hunters-uk-episode-6/', | 
					
						
							|  |  |  |         'only_matching': True, | 
					
						
							|  |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://www.discovery.de/#5332316765001', | 
					
						
							|  |  |  |         'only_matching': True, | 
					
						
							|  |  |  |     }] | 
					
						
							| 
									
										
										
										
											2016-03-14 21:53:00 +01:00
										 |  |  |     BRIGHTCOVE_URL_TEMPLATE = 'http://players.brightcove.net/1659832546/default_default/index.html?videoId=%s' | 
					
						
							| 
									
										
										
										
											2014-04-16 15:45:05 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							|  |  |  |         mobj = re.match(self._VALID_URL, url) | 
					
						
							| 
									
										
										
										
											2016-03-14 21:53:00 +01:00
										 |  |  |         brightcove_id = mobj.group('id') | 
					
						
							|  |  |  |         if not brightcove_id: | 
					
						
							|  |  |  |             title = mobj.group('title') | 
					
						
							|  |  |  |             webpage = self._download_webpage(url, title) | 
					
						
							|  |  |  |             brightcove_legacy_url = BrightcoveLegacyIE._extract_brightcove_url(webpage) | 
					
						
							| 
									
										
										
										
											2017-03-17 09:53:44 +01:00
										 |  |  |             brightcove_id = compat_parse_qs(compat_urlparse.urlparse( | 
					
						
							|  |  |  |                 brightcove_legacy_url).query)['@videoPlayer'][0] | 
					
						
							|  |  |  |         return self.url_result(smuggle_url( | 
					
						
							|  |  |  |             self.BRIGHTCOVE_URL_TEMPLATE % brightcove_id, {'geo_countries': ['DE']}), | 
					
						
							|  |  |  |             'BrightcoveNew', brightcove_id) |