This commit is contained in:
Aniruddh Joshi 2024-04-28 16:15:31 +05:30 committed by GitHub
commit b8d4169624
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 1 deletions

View File

@ -14,7 +14,7 @@ class AENetworksBaseIE(ThePlatformIE): # XXX: Do not subclass from concrete IE
_BASE_URL_REGEX = r'''(?x)https?://
(?:(?:www|play|watch)\.)?
(?P<domain>
(?:history(?:vault)?|aetv|mylifetime|lifetimemovieclub)\.com|
(?:history(?:vault)?|aetv|mylifetime|lifetimemovieclub|aecrimecentral)\.com|
fyi\.tv
)/'''
_THEPLATFORM_KEY = '43jXaGRQud'
@ -27,6 +27,7 @@ class AENetworksBaseIE(ThePlatformIE): # XXX: Do not subclass from concrete IE
'fyi.tv': ('FYI', 'fyi'),
'historyvault.com': (None, 'historyvault'),
'biography.com': (None, 'biography'),
'aecrimecentral.com': ('AECRIMECENTRAL', 'crimecentral')
}
def _extract_aen_smil(self, smil_url, video_id, auth=None):
@ -193,6 +194,9 @@ class AENetworksIE(AENetworksBaseIE):
}, {
'url': 'https://play.aetv.com/shows/duck-dynasty/videos/best-of-duck-dynasty-getting-quack-in-shape',
'only_matching': True
}, {
'url': 'https://watch.aecrimecentral.com/shows/my-lover-my-killer/season-1/episode-6',
'only_matching': True
}]
def _real_extract(self, url):