diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-05-03 21:24:51 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-05-03 21:24:51 +0600 |
commit | 964f49336fcf94b3a5399a026db3914b27a2a445 (patch) | |
tree | 5d7df307a2354240cbd56aef45072b4180b84fcd /youtube_dl/extractor/aol.py | |
parent | 57d8e32a3ec7fe70522edad6fd0c2847b4e00944 (diff) | |
download | youtube-dl-964f49336fcf94b3a5399a026db3914b27a2a445.zip youtube-dl-964f49336fcf94b3a5399a026db3914b27a2a445.tar.gz youtube-dl-964f49336fcf94b3a5399a026db3914b27a2a445.tar.bz2 |
[aol] Improve _VALID_URL (Closes #9381)
Diffstat (limited to 'youtube_dl/extractor/aol.py')
-rw-r--r-- | youtube_dl/extractor/aol.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/youtube_dl/extractor/aol.py b/youtube_dl/extractor/aol.py index 24df8fe..42c21bf 100644 --- a/youtube_dl/extractor/aol.py +++ b/youtube_dl/extractor/aol.py @@ -12,7 +12,7 @@ from ..utils import ( class AolIE(InfoExtractor): IE_NAME = 'on.aol.com' - _VALID_URL = r'(?:aol-video:|https?://on\.aol\.com/.*-)(?P<id>[^/?-]+)' + _VALID_URL = r'(?:aol-video:|https?://on\.aol\.com/(?:[^/]+/)*(?:[^/?#&]+-)?)(?P<id>[^/?#&]+)' _TESTS = [{ # video with 5min ID @@ -53,6 +53,12 @@ class AolIE(InfoExtractor): }, { 'url': 'http://on.aol.com/shows/park-bench-shw518173474-559a1b9be4b0c3bfad3357a7?context=SH:SHW518173474:PL4327:1460619712763', 'only_matching': True, + }, { + 'url': 'http://on.aol.com/video/519442220', + 'only_matching': True, + }, { + 'url': 'aol-video:5707d6b8e4b090497b04f706', + 'only_matching': True, }] def _real_extract(self, url): |