diff options
author | Remita Amine <remitamine@gmail.com> | 2021-01-16 18:12:05 +0100 |
---|---|---|
committer | pukkandan <pukkandan@gmail.com> | 2021-01-24 20:28:44 +0530 |
commit | a820dc722e93b40450b8280a23110c4960800123 (patch) | |
tree | 183030101461cdeeadd3d4d215ed34dc4d9051b3 /youtube_dlc/extractor/aol.py | |
parent | f74980cbaebaf3c4ea89d1b257424a50545991d9 (diff) |
Update to ytdl-2021.01.24.1
Diffstat (limited to 'youtube_dlc/extractor/aol.py')
-rw-r--r-- | youtube_dlc/extractor/aol.py | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/youtube_dlc/extractor/aol.py b/youtube_dlc/extractor/aol.py index e87994a6a..f6ecb8438 100644 --- a/youtube_dlc/extractor/aol.py +++ b/youtube_dlc/extractor/aol.py @@ -3,7 +3,7 @@ from __future__ import unicode_literals import re -from .common import InfoExtractor +from .yahoo import YahooIE from ..compat import ( compat_parse_qs, compat_urllib_parse_urlparse, @@ -15,9 +15,9 @@ from ..utils import ( ) -class AolIE(InfoExtractor): +class AolIE(YahooIE): IE_NAME = 'aol.com' - _VALID_URL = r'(?:aol-video:|https?://(?:www\.)?aol\.(?:com|ca|co\.uk|de|jp)/video/(?:[^/]+/)*)(?P<id>[0-9a-f]+)' + _VALID_URL = r'(?:aol-video:|https?://(?:www\.)?aol\.(?:com|ca|co\.uk|de|jp)/video/(?:[^/]+/)*)(?P<id>\d{9}|[0-9a-f]{24}|[0-9a-f]{8}-(?:[0-9a-f]{4}-){3}[0-9a-f]{12})' _TESTS = [{ # video with 5min ID @@ -76,10 +76,16 @@ class AolIE(InfoExtractor): }, { 'url': 'https://www.aol.jp/video/playlist/5a28e936a1334d000137da0c/5a28f3151e642219fde19831/', 'only_matching': True, + }, { + # Yahoo video + 'url': 'https://www.aol.com/video/play/991e6700-ac02-11ea-99ff-357400036f61/24bbc846-3e30-3c46-915e-fe8ccd7fcc46/', + 'only_matching': True, }] def _real_extract(self, url): video_id = self._match_id(url) + if '-' in video_id: + return self._extract_yahoo_video(video_id, 'us') response = self._download_json( 'https://feedapi.b2c.on.aol.com/v1.0/app/videos/aolon/%s/details' % video_id, |