diff options
author | Sergey M․ <dstftw@gmail.com> | 2018-03-24 14:11:27 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2018-03-24 14:11:27 +0700 |
commit | b015cb1af3453c6f27c1b8ebd1916c1fc4f94923 (patch) | |
tree | f13c116c19d8d3d6ad35290ecd2df6834d17aad4 | |
parent | 7d34016fb0c7ef489f382bd106dcfedf401b617f (diff) |
[24video] Add support for 24video.sexy (closes #15973)
-rw-r--r-- | youtube_dl/extractor/twentyfourvideo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/twentyfourvideo.py b/youtube_dl/extractor/twentyfourvideo.py index 96e0b96e3..4b3b3e705 100644 --- a/youtube_dl/extractor/twentyfourvideo.py +++ b/youtube_dl/extractor/twentyfourvideo.py @@ -14,7 +14,7 @@ from ..utils import ( class TwentyFourVideoIE(InfoExtractor): IE_NAME = '24video' - _VALID_URL = r'https?://(?P<host>(?:www\.)?24video\.(?:net|me|xxx|sex|tube|adult))/(?:video/(?:view|xml)/|player/new24_play\.swf\?id=)(?P<id>\d+)' + _VALID_URL = r'https?://(?P<host>(?:www\.)?24video\.(?:net|me|xxx|sexy?|tube|adult))/(?:video/(?:view|xml)/|player/new24_play\.swf\?id=)(?P<id>\d+)' _TESTS = [{ 'url': 'http://www.24video.net/video/view/1044982', |