mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	[aenetworks] Fix extraction
- Fix Fastly format extraction - Add support for play and watch subdomains - Extract series metadata closes #23363 closes #23390 closes #26795 closes #26985
This commit is contained in:
		| @@ -5,20 +5,30 @@ import re | |||||||
|  |  | ||||||
| from .theplatform import ThePlatformIE | from .theplatform import ThePlatformIE | ||||||
| from ..utils import ( | from ..utils import ( | ||||||
|     extract_attributes, |  | ||||||
|     ExtractorError, |     ExtractorError, | ||||||
|     int_or_none, |     int_or_none, | ||||||
|     smuggle_url, |  | ||||||
|     update_url_query, |     update_url_query, | ||||||
| ) |     urlencode_postdata, | ||||||
| from ..compat import ( |  | ||||||
|     compat_urlparse, |  | ||||||
| ) | ) | ||||||
|  |  | ||||||
|  |  | ||||||
| class AENetworksBaseIE(ThePlatformIE): | class AENetworksBaseIE(ThePlatformIE): | ||||||
|  |     _BASE_URL_REGEX = r'''(?x)https?:// | ||||||
|  |         (?:(?:www|play|watch)\.)? | ||||||
|  |         (?P<domain> | ||||||
|  |             (?:history(?:vault)?|aetv|mylifetime|lifetimemovieclub)\.com| | ||||||
|  |             fyi\.tv | ||||||
|  |         )/''' | ||||||
|     _THEPLATFORM_KEY = 'crazyjava' |     _THEPLATFORM_KEY = 'crazyjava' | ||||||
|     _THEPLATFORM_SECRET = 's3cr3t' |     _THEPLATFORM_SECRET = 's3cr3t' | ||||||
|  |     _DOMAIN_MAP = { | ||||||
|  |         'history.com': ('HISTORY', 'history'), | ||||||
|  |         'aetv.com': ('AETV', 'aetv'), | ||||||
|  |         'mylifetime.com': ('LIFETIME', 'lifetime'), | ||||||
|  |         'lifetimemovieclub.com': ('LIFETIMEMOVIECLUB', 'lmc'), | ||||||
|  |         'fyi.tv': ('FYI', 'fyi'), | ||||||
|  |         'historyvault.com': (None, 'historyvault'), | ||||||
|  |     } | ||||||
|  |  | ||||||
|     def _extract_aen_smil(self, smil_url, video_id, auth=None): |     def _extract_aen_smil(self, smil_url, video_id, auth=None): | ||||||
|         query = {'mbr': 'true'} |         query = {'mbr': 'true'} | ||||||
| @@ -31,7 +41,7 @@ class AENetworksBaseIE(ThePlatformIE): | |||||||
|             'assetTypes': 'high_video_s3' |             'assetTypes': 'high_video_s3' | ||||||
|         }, { |         }, { | ||||||
|             'assetTypes': 'high_video_s3', |             'assetTypes': 'high_video_s3', | ||||||
|             'switch': 'hls_ingest_fastly' |             'switch': 'hls_high_fastly', | ||||||
|         }] |         }] | ||||||
|         formats = [] |         formats = [] | ||||||
|         subtitles = {} |         subtitles = {} | ||||||
| @@ -61,20 +71,13 @@ class AENetworksBaseIE(ThePlatformIE): | |||||||
| class AENetworksIE(AENetworksBaseIE): | class AENetworksIE(AENetworksBaseIE): | ||||||
|     IE_NAME = 'aenetworks' |     IE_NAME = 'aenetworks' | ||||||
|     IE_DESC = 'A+E Networks: A&E, Lifetime, History.com, FYI Network and History Vault' |     IE_DESC = 'A+E Networks: A&E, Lifetime, History.com, FYI Network and History Vault' | ||||||
|     _VALID_URL = r'''(?x) |     _VALID_URL = AENetworksBaseIE._BASE_URL_REGEX + r'''(?P<id> | ||||||
|                     https?:// |         shows/[^/]+/season-\d+/episode-\d+| | ||||||
|                         (?:www\.)? |         (?: | ||||||
|                         (?P<domain> |             (?:movie|special)s/[^/]+| | ||||||
|                             (?:history(?:vault)?|aetv|mylifetime|lifetimemovieclub)\.com| |             (?:shows/[^/]+/)?videos | ||||||
|                             fyi\.tv |         )/[^/?#&]+ | ||||||
|                         )/ |     )''' | ||||||
|                         (?: |  | ||||||
|                             shows/(?P<show_path>[^/]+(?:/[^/]+){0,2})| |  | ||||||
|                             movies/(?P<movie_display_id>[^/]+)(?:/full-movie)?| |  | ||||||
|                             specials/(?P<special_display_id>[^/]+)/(?:full-special|preview-)| |  | ||||||
|                             collections/[^/]+/(?P<collection_display_id>[^/]+) |  | ||||||
|                         ) |  | ||||||
|                     ''' |  | ||||||
|     _TESTS = [{ |     _TESTS = [{ | ||||||
|         'url': 'http://www.history.com/shows/mountain-men/season-1/episode-1', |         'url': 'http://www.history.com/shows/mountain-men/season-1/episode-1', | ||||||
|         'info_dict': { |         'info_dict': { | ||||||
| @@ -91,22 +94,23 @@ class AENetworksIE(AENetworksBaseIE): | |||||||
|             'skip_download': True, |             'skip_download': True, | ||||||
|         }, |         }, | ||||||
|         'add_ie': ['ThePlatform'], |         'add_ie': ['ThePlatform'], | ||||||
|     }, { |         'skip': 'This video is only available for users of participating TV providers.', | ||||||
|         'url': 'http://www.history.com/shows/ancient-aliens/season-1', |  | ||||||
|         'info_dict': { |  | ||||||
|             'id': '71889446852', |  | ||||||
|         }, |  | ||||||
|         'playlist_mincount': 5, |  | ||||||
|     }, { |  | ||||||
|         'url': 'http://www.mylifetime.com/shows/atlanta-plastic', |  | ||||||
|         'info_dict': { |  | ||||||
|             'id': 'SERIES4317', |  | ||||||
|             'title': 'Atlanta Plastic', |  | ||||||
|         }, |  | ||||||
|         'playlist_mincount': 2, |  | ||||||
|     }, { |     }, { | ||||||
|         'url': 'http://www.aetv.com/shows/duck-dynasty/season-9/episode-1', |         'url': 'http://www.aetv.com/shows/duck-dynasty/season-9/episode-1', | ||||||
|         'only_matching': True |         'info_dict': { | ||||||
|  |             'id': '600587331957', | ||||||
|  |             'ext': 'mp4', | ||||||
|  |             'title': 'Inlawful Entry', | ||||||
|  |             'description': 'md5:57c12115a2b384d883fe64ca50529e08', | ||||||
|  |             'timestamp': 1452634428, | ||||||
|  |             'upload_date': '20160112', | ||||||
|  |             'uploader': 'AENE-NEW', | ||||||
|  |         }, | ||||||
|  |         'params': { | ||||||
|  |             # m3u8 download | ||||||
|  |             'skip_download': True, | ||||||
|  |         }, | ||||||
|  |         'add_ie': ['ThePlatform'], | ||||||
|     }, { |     }, { | ||||||
|         'url': 'http://www.fyi.tv/shows/tiny-house-nation/season-1/episode-8', |         'url': 'http://www.fyi.tv/shows/tiny-house-nation/season-1/episode-8', | ||||||
|         'only_matching': True |         'only_matching': True | ||||||
| @@ -117,80 +121,152 @@ class AENetworksIE(AENetworksBaseIE): | |||||||
|         'url': 'http://www.mylifetime.com/movies/center-stage-on-pointe/full-movie', |         'url': 'http://www.mylifetime.com/movies/center-stage-on-pointe/full-movie', | ||||||
|         'only_matching': True |         'only_matching': True | ||||||
|     }, { |     }, { | ||||||
|         'url': 'https://www.lifetimemovieclub.com/movies/a-killer-among-us', |         'url': 'https://watch.lifetimemovieclub.com/movies/10-year-reunion/full-movie', | ||||||
|         'only_matching': True |         'only_matching': True | ||||||
|     }, { |     }, { | ||||||
|         'url': 'http://www.history.com/specials/sniper-into-the-kill-zone/full-special', |         'url': 'http://www.history.com/specials/sniper-into-the-kill-zone/full-special', | ||||||
|         'only_matching': True |         'only_matching': True | ||||||
|     }, { |  | ||||||
|         'url': 'https://www.historyvault.com/collections/america-the-story-of-us/westward', |  | ||||||
|         'only_matching': True |  | ||||||
|     }, { |     }, { | ||||||
|         'url': 'https://www.aetv.com/specials/hunting-jonbenets-killer-the-untold-story/preview-hunting-jonbenets-killer-the-untold-story', |         'url': 'https://www.aetv.com/specials/hunting-jonbenets-killer-the-untold-story/preview-hunting-jonbenets-killer-the-untold-story', | ||||||
|         'only_matching': True |         'only_matching': True | ||||||
|  |     }, { | ||||||
|  |         'url': 'http://www.history.com/videos/history-of-valentines-day', | ||||||
|  |         'only_matching': True | ||||||
|  |     }, { | ||||||
|  |         'url': 'https://play.aetv.com/shows/duck-dynasty/videos/best-of-duck-dynasty-getting-quack-in-shape', | ||||||
|  |         'only_matching': True | ||||||
|     }] |     }] | ||||||
|     _DOMAIN_TO_REQUESTOR_ID = { |  | ||||||
|         'history.com': 'HISTORY', |  | ||||||
|         'aetv.com': 'AETV', |  | ||||||
|         'mylifetime.com': 'LIFETIME', |  | ||||||
|         'lifetimemovieclub.com': 'LIFETIMEMOVIECLUB', |  | ||||||
|         'fyi.tv': 'FYI', |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     def _real_extract(self, url): |     def _real_extract(self, url): | ||||||
|         domain, show_path, movie_display_id, special_display_id, collection_display_id = re.match(self._VALID_URL, url).groups() |         domain, canonical = re.match(self._VALID_URL, url).groups() | ||||||
|         display_id = show_path or movie_display_id or special_display_id or collection_display_id |         requestor_id, brand = self._DOMAIN_MAP[domain] | ||||||
|         webpage = self._download_webpage(url, display_id, headers=self.geo_verification_headers()) |         result = self._download_json( | ||||||
|         if show_path: |             'https://feeds.video.aetnd.com/api/v2/%s/videos' % brand, | ||||||
|             url_parts = show_path.split('/') |             canonical, query={'filter[canonical]': '/' + canonical})['results'][0] | ||||||
|             url_parts_len = len(url_parts) |         title = result['title'] | ||||||
|             if url_parts_len == 1: |         video_id = result['id'] | ||||||
|                 entries = [] |         media_url = result['publicUrl'] | ||||||
|                 for season_url_path in re.findall(r'(?s)<li[^>]+data-href="(/shows/%s/season-\d+)"' % url_parts[0], webpage): |  | ||||||
|                     entries.append(self.url_result( |  | ||||||
|                         compat_urlparse.urljoin(url, season_url_path), 'AENetworks')) |  | ||||||
|                 if entries: |  | ||||||
|                     return self.playlist_result( |  | ||||||
|                         entries, self._html_search_meta('aetn:SeriesId', webpage), |  | ||||||
|                         self._html_search_meta('aetn:SeriesTitle', webpage)) |  | ||||||
|                 else: |  | ||||||
|                     # single season |  | ||||||
|                     url_parts_len = 2 |  | ||||||
|             if url_parts_len == 2: |  | ||||||
|                 entries = [] |  | ||||||
|                 for episode_item in re.findall(r'(?s)<[^>]+class="[^"]*(?:episode|program)-item[^"]*"[^>]*>', webpage): |  | ||||||
|                     episode_attributes = extract_attributes(episode_item) |  | ||||||
|                     episode_url = compat_urlparse.urljoin( |  | ||||||
|                         url, episode_attributes['data-canonical']) |  | ||||||
|                     entries.append(self.url_result( |  | ||||||
|                         episode_url, 'AENetworks', |  | ||||||
|                         episode_attributes.get('data-videoid') or episode_attributes.get('data-video-id'))) |  | ||||||
|                 return self.playlist_result( |  | ||||||
|                     entries, self._html_search_meta('aetn:SeasonId', webpage)) |  | ||||||
|  |  | ||||||
|         video_id = self._html_search_meta('aetn:VideoID', webpage) |  | ||||||
|         media_url = self._search_regex( |  | ||||||
|             [r"media_url\s*=\s*'(?P<url>[^']+)'", |  | ||||||
|              r'data-media-url=(?P<url>(?:https?:)?//[^\s>]+)', |  | ||||||
|              r'data-media-url=(["\'])(?P<url>(?:(?!\1).)+?)\1'], |  | ||||||
|             webpage, 'video url', group='url') |  | ||||||
|         theplatform_metadata = self._download_theplatform_metadata(self._search_regex( |         theplatform_metadata = self._download_theplatform_metadata(self._search_regex( | ||||||
|             r'https?://link\.theplatform\.com/s/([^?]+)', media_url, 'theplatform_path'), video_id) |             r'https?://link\.theplatform\.com/s/([^?]+)', media_url, 'theplatform_path'), video_id) | ||||||
|         info = self._parse_theplatform_metadata(theplatform_metadata) |         info = self._parse_theplatform_metadata(theplatform_metadata) | ||||||
|         auth = None |         auth = None | ||||||
|         if theplatform_metadata.get('AETN$isBehindWall'): |         if theplatform_metadata.get('AETN$isBehindWall'): | ||||||
|             requestor_id = self._DOMAIN_TO_REQUESTOR_ID[domain] |  | ||||||
|             resource = self._get_mvpd_resource( |             resource = self._get_mvpd_resource( | ||||||
|                 requestor_id, theplatform_metadata['title'], |                 requestor_id, theplatform_metadata['title'], | ||||||
|                 theplatform_metadata.get('AETN$PPL_pplProgramId') or theplatform_metadata.get('AETN$PPL_pplProgramId_OLD'), |                 theplatform_metadata.get('AETN$PPL_pplProgramId') or theplatform_metadata.get('AETN$PPL_pplProgramId_OLD'), | ||||||
|                 theplatform_metadata['ratings'][0]['rating']) |                 theplatform_metadata['ratings'][0]['rating']) | ||||||
|             auth = self._extract_mvpd_auth( |             auth = self._extract_mvpd_auth( | ||||||
|                 url, video_id, requestor_id, resource) |                 url, video_id, requestor_id, resource) | ||||||
|         info.update(self._search_json_ld(webpage, video_id, fatal=False)) |  | ||||||
|         info.update(self._extract_aen_smil(media_url, video_id, auth)) |         info.update(self._extract_aen_smil(media_url, video_id, auth)) | ||||||
|  |         info.update({ | ||||||
|  |             'title': title, | ||||||
|  |             'series': result.get('seriesName'), | ||||||
|  |             'season_number': int_or_none(result.get('tvSeasonNumber')), | ||||||
|  |             'episode_number': int_or_none(result.get('tvSeasonEpisodeNumber')), | ||||||
|  |         }) | ||||||
|         return info |         return info | ||||||
|  |  | ||||||
|  |  | ||||||
|  | class AENetworksListBaseIE(AENetworksBaseIE): | ||||||
|  |     def _call_api(self, resource, slug, brand, fields): | ||||||
|  |         return self._download_json( | ||||||
|  |             'https://yoga.appsvcs.aetnd.com/graphql', | ||||||
|  |             slug, query={'brand': brand}, data=urlencode_postdata({ | ||||||
|  |                 'query': '''{ | ||||||
|  |   %s(slug: "%s") { | ||||||
|  |     %s | ||||||
|  |   } | ||||||
|  | }''' % (resource, slug, fields), | ||||||
|  |             }))['data'][resource] | ||||||
|  |  | ||||||
|  |     def _real_extract(self, url): | ||||||
|  |         domain, slug = re.match(self._VALID_URL, url).groups() | ||||||
|  |         _, brand = self._DOMAIN_MAP[domain] | ||||||
|  |         playlist = self._call_api(self._RESOURCE, slug, brand, self._FIELDS) | ||||||
|  |         base_url = 'http://watch.%s' % domain | ||||||
|  |  | ||||||
|  |         entries = [] | ||||||
|  |         for item in (playlist.get(self._ITEMS_KEY) or []): | ||||||
|  |             doc = self._get_doc(item) | ||||||
|  |             canonical = doc.get('canonical') | ||||||
|  |             if not canonical: | ||||||
|  |                 continue | ||||||
|  |             entries.append(self.url_result( | ||||||
|  |                 base_url + canonical, AENetworksIE.ie_key(), doc.get('id'))) | ||||||
|  |  | ||||||
|  |         description = None | ||||||
|  |         if self._PLAYLIST_DESCRIPTION_KEY: | ||||||
|  |             description = playlist.get(self._PLAYLIST_DESCRIPTION_KEY) | ||||||
|  |  | ||||||
|  |         return self.playlist_result( | ||||||
|  |             entries, playlist.get('id'), | ||||||
|  |             playlist.get(self._PLAYLIST_TITLE_KEY), description) | ||||||
|  |  | ||||||
|  |  | ||||||
|  | class AENetworksCollectionIE(AENetworksListBaseIE): | ||||||
|  |     IE_NAME = 'aenetworks:collection' | ||||||
|  |     _VALID_URL = AENetworksBaseIE._BASE_URL_REGEX + r'(?:[^/]+/)*(?:list|collections)/(?P<id>[^/?#&]+)/?(?:[?#&]|$)' | ||||||
|  |     _TESTS = [{ | ||||||
|  |         'url': 'https://watch.historyvault.com/list/america-the-story-of-us', | ||||||
|  |         'info_dict': { | ||||||
|  |             'id': '282', | ||||||
|  |             'title': 'America The Story of Us', | ||||||
|  |         }, | ||||||
|  |         'playlist_mincount': 12, | ||||||
|  |     }, { | ||||||
|  |         'url': 'https://watch.historyvault.com/shows/america-the-story-of-us-2/season-1/list/america-the-story-of-us', | ||||||
|  |         'only_matching': True | ||||||
|  |     }, { | ||||||
|  |         'url': 'https://www.historyvault.com/collections/mysteryquest', | ||||||
|  |         'only_matching': True | ||||||
|  |     }] | ||||||
|  |     _RESOURCE = 'list' | ||||||
|  |     _ITEMS_KEY = 'items' | ||||||
|  |     _PLAYLIST_TITLE_KEY = 'display_title' | ||||||
|  |     _PLAYLIST_DESCRIPTION_KEY = None | ||||||
|  |     _FIELDS = '''id | ||||||
|  |     display_title | ||||||
|  |     items { | ||||||
|  |       ... on ListVideoItem { | ||||||
|  |         doc { | ||||||
|  |           canonical | ||||||
|  |           id | ||||||
|  |         } | ||||||
|  |       } | ||||||
|  |     }''' | ||||||
|  |  | ||||||
|  |     def _get_doc(self, item): | ||||||
|  |         return item.get('doc') or {} | ||||||
|  |  | ||||||
|  |  | ||||||
|  | class AENetworksShowIE(AENetworksListBaseIE): | ||||||
|  |     IE_NAME = 'aenetworks:show' | ||||||
|  |     _VALID_URL = AENetworksBaseIE._BASE_URL_REGEX + r'shows/(?P<id>[^/?#&]+)/?(?:[?#&]|$)' | ||||||
|  |     _TESTS = [{ | ||||||
|  |         'url': 'http://www.history.com/shows/ancient-aliens', | ||||||
|  |         'info_dict': { | ||||||
|  |             'id': 'SH012427480000', | ||||||
|  |             'title': 'Ancient Aliens', | ||||||
|  |             'description': 'md5:3f6d74daf2672ff3ae29ed732e37ea7f', | ||||||
|  |         }, | ||||||
|  |         'playlist_mincount': 168, | ||||||
|  |     }] | ||||||
|  |     _RESOURCE = 'series' | ||||||
|  |     _ITEMS_KEY = 'episodes' | ||||||
|  |     _PLAYLIST_TITLE_KEY = 'title' | ||||||
|  |     _PLAYLIST_DESCRIPTION_KEY = 'description' | ||||||
|  |     _FIELDS = '''description | ||||||
|  |     id | ||||||
|  |     title | ||||||
|  |     episodes { | ||||||
|  |       canonical | ||||||
|  |       id | ||||||
|  |     }''' | ||||||
|  |  | ||||||
|  |     def _get_doc(self, item): | ||||||
|  |         return item | ||||||
|  |  | ||||||
|  |  | ||||||
| class HistoryTopicIE(AENetworksBaseIE): | class HistoryTopicIE(AENetworksBaseIE): | ||||||
|     IE_NAME = 'history:topic' |     IE_NAME = 'history:topic' | ||||||
|     IE_DESC = 'History.com Topic' |     IE_DESC = 'History.com Topic' | ||||||
| @@ -204,6 +280,7 @@ class HistoryTopicIE(AENetworksBaseIE): | |||||||
|             'description': 'md5:7b57ea4829b391995b405fa60bd7b5f7', |             'description': 'md5:7b57ea4829b391995b405fa60bd7b5f7', | ||||||
|             'timestamp': 1375819729, |             'timestamp': 1375819729, | ||||||
|             'upload_date': '20130806', |             'upload_date': '20130806', | ||||||
|  |             'uploader': 'AENE-NEW', | ||||||
|         }, |         }, | ||||||
|         'params': { |         'params': { | ||||||
|             # m3u8 download |             # m3u8 download | ||||||
| @@ -212,36 +289,8 @@ class HistoryTopicIE(AENetworksBaseIE): | |||||||
|         'add_ie': ['ThePlatform'], |         'add_ie': ['ThePlatform'], | ||||||
|     }] |     }] | ||||||
|  |  | ||||||
|     def theplatform_url_result(self, theplatform_url, video_id, query): |  | ||||||
|         return { |  | ||||||
|             '_type': 'url_transparent', |  | ||||||
|             'id': video_id, |  | ||||||
|             'url': smuggle_url( |  | ||||||
|                 update_url_query(theplatform_url, query), |  | ||||||
|                 { |  | ||||||
|                     'sig': { |  | ||||||
|                         'key': self._THEPLATFORM_KEY, |  | ||||||
|                         'secret': self._THEPLATFORM_SECRET, |  | ||||||
|                     }, |  | ||||||
|                     'force_smil_url': True |  | ||||||
|                 }), |  | ||||||
|             'ie_key': 'ThePlatform', |  | ||||||
|         } |  | ||||||
|  |  | ||||||
|     def _real_extract(self, url): |     def _real_extract(self, url): | ||||||
|         display_id = self._match_id(url) |         display_id = self._match_id(url) | ||||||
|         webpage = self._download_webpage(url, display_id) |         return self.url_result( | ||||||
|         video_id = self._search_regex( |             'http://www.history.com/videos/' + display_id, | ||||||
|             r'<phoenix-iframe[^>]+src="[^"]+\btpid=(\d+)', webpage, 'tpid') |             AENetworksIE.ie_key()) | ||||||
|         result = self._download_json( |  | ||||||
|             'https://feeds.video.aetnd.com/api/v2/history/videos', |  | ||||||
|             video_id, query={'filter[id]': video_id})['results'][0] |  | ||||||
|         title = result['title'] |  | ||||||
|         info = self._extract_aen_smil(result['publicUrl'], video_id) |  | ||||||
|         info.update({ |  | ||||||
|             'title': title, |  | ||||||
|             'description': result.get('description'), |  | ||||||
|             'duration': int_or_none(result.get('duration')), |  | ||||||
|             'timestamp': int_or_none(result.get('added'), 1000), |  | ||||||
|         }) |  | ||||||
|         return info |  | ||||||
|   | |||||||
| @@ -30,6 +30,8 @@ from .adobetv import ( | |||||||
| from .adultswim import AdultSwimIE | from .adultswim import AdultSwimIE | ||||||
| from .aenetworks import ( | from .aenetworks import ( | ||||||
|     AENetworksIE, |     AENetworksIE, | ||||||
|  |     AENetworksCollectionIE, | ||||||
|  |     AENetworksShowIE, | ||||||
|     HistoryTopicIE, |     HistoryTopicIE, | ||||||
| ) | ) | ||||||
| from .afreecatv import AfreecaTVIE | from .afreecatv import AfreecaTVIE | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user