| 
									
										
										
										
											2015-02-15 04:57:52 +06:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from .common import InfoExtractor | 
					
						
							|  |  |  | from ..utils import smuggle_url | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-17 03:02:45 +06:00
										 |  |  | class AENetworksIE(InfoExtractor): | 
					
						
							|  |  |  |     IE_NAME = 'aenetworks' | 
					
						
							|  |  |  |     IE_DESC = 'A+E Networks: A&E, Lifetime, History.com, FYI Network' | 
					
						
							| 
									
										
										
										
											2016-01-15 22:13:48 +06:00
										 |  |  |     _VALID_URL = r'https?://(?:www\.)?(?:(?:history|aetv|mylifetime)\.com|fyi\.tv)/(?:[^/]+/)+(?P<id>[^/]+?)(?:$|[?#])' | 
					
						
							| 
									
										
										
										
											2015-02-15 04:57:52 +06:00
										 |  |  | 
 | 
					
						
							|  |  |  |     _TESTS = [{ | 
					
						
							|  |  |  |         'url': 'http://www.history.com/topics/valentines-day/history-of-valentines-day/videos/bet-you-didnt-know-valentines-day?m=528e394da93ae&s=undefined&f=1&free=false', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							| 
									
										
										
										
											2016-01-15 15:16:57 +01:00
										 |  |  |             'id': 'g12m5Gyt3fdR', | 
					
						
							| 
									
										
										
										
											2015-02-15 04:57:52 +06:00
										 |  |  |             'ext': 'mp4', | 
					
						
							|  |  |  |             'title': "Bet You Didn't Know: Valentine's Day", | 
					
						
							|  |  |  |             'description': 'md5:7b57ea4829b391995b405fa60bd7b5f7', | 
					
						
							|  |  |  |         }, | 
					
						
							| 
									
										
										
										
											2016-01-15 15:16:57 +01:00
										 |  |  |         'params': { | 
					
						
							|  |  |  |             # m3u8 download | 
					
						
							|  |  |  |             'skip_download': True, | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         'add_ie': ['ThePlatform'], | 
					
						
							| 
									
										
										
										
											2016-01-16 20:56:53 +08:00
										 |  |  |         'expected_warnings': ['JSON-LD'], | 
					
						
							| 
									
										
										
										
											2016-01-15 15:16:57 +01:00
										 |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://www.history.com/shows/mountain-men/season-1/episode-1', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': 'eg47EERs_JsZ', | 
					
						
							|  |  |  |             'ext': 'mp4', | 
					
						
							| 
									
										
										
										
											2016-02-14 15:37:17 +06:00
										 |  |  |             'title': 'Winter Is Coming', | 
					
						
							| 
									
										
										
										
											2016-01-16 20:56:53 +08:00
										 |  |  |             'description': 'md5:641f424b7a19d8e24f26dea22cf59d74', | 
					
						
							| 
									
										
										
										
											2016-01-15 15:16:57 +01:00
										 |  |  |         }, | 
					
						
							|  |  |  |         'params': { | 
					
						
							|  |  |  |             # m3u8 download | 
					
						
							|  |  |  |             'skip_download': True, | 
					
						
							|  |  |  |         }, | 
					
						
							| 
									
										
										
										
											2015-02-15 04:57:52 +06:00
										 |  |  |         'add_ie': ['ThePlatform'], | 
					
						
							| 
									
										
										
										
											2016-01-15 16:18:07 +01:00
										 |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://www.aetv.com/shows/duck-dynasty/video/inlawful-entry', | 
					
						
							|  |  |  |         'only_matching': True | 
					
						
							|  |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://www.fyi.tv/shows/tiny-house-nation/videos/207-sq-ft-minnesota-prairie-cottage', | 
					
						
							|  |  |  |         'only_matching': True | 
					
						
							|  |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://www.mylifetime.com/shows/project-runway-junior/video/season-1/episode-6/superstar-clients', | 
					
						
							|  |  |  |         'only_matching': True | 
					
						
							| 
									
										
										
										
											2015-02-15 04:57:52 +06:00
										 |  |  |     }] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							|  |  |  |         video_id = self._match_id(url) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         webpage = self._download_webpage(url, video_id) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-15 15:16:57 +01:00
										 |  |  |         video_url_re = [ | 
					
						
							| 
									
										
										
										
											2016-01-15 14:54:39 +01:00
										 |  |  |             r'data-href="[^"]*/%s"[^>]+data-release-url="([^"]+)"' % video_id, | 
					
						
							| 
									
										
										
										
											2016-01-15 15:16:57 +01:00
										 |  |  |             r"media_url\s*=\s*'([^']+)'" | 
					
						
							|  |  |  |         ] | 
					
						
							|  |  |  |         video_url = self._search_regex(video_url_re, webpage, 'video url') | 
					
						
							| 
									
										
										
										
											2015-02-15 04:57:52 +06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-16 00:36:49 +06:00
										 |  |  |         info = self._search_json_ld(webpage, video_id, fatal=False) | 
					
						
							|  |  |  |         info.update({ | 
					
						
							|  |  |  |             '_type': 'url_transparent', | 
					
						
							| 
									
										
										
										
											2016-02-12 17:56:06 +01:00
										 |  |  |             'url': smuggle_url(video_url, {'sig': {'key': 'crazyjava', 'secret': 's3cr3t'}}), | 
					
						
							| 
									
										
										
										
											2016-01-16 00:36:49 +06:00
										 |  |  |         }) | 
					
						
							|  |  |  |         return info |