diff options
author | Jakub Wilk <jwilk@jwilk.net> | 2018-07-18 18:47:26 +0200 |
---|---|---|
committer | Sergey M <dstftw@gmail.com> | 2018-07-18 23:47:26 +0700 |
commit | 905eef2b06f1e890b1dfd228aa4fa1fa2308d687 (patch) | |
tree | d36127a4a034010af7ff914cf1be16818d0f98a3 | |
parent | 79367a98208fbf01d6e04b6747a6e01d0b1f8b9a (diff) |
[imgur] Allow digits in filename extension
-rw-r--r-- | youtube_dl/extractor/imgur.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/extractor/imgur.py b/youtube_dl/extractor/imgur.py index 2901960a5..ecc958a17 100644 --- a/youtube_dl/extractor/imgur.py +++ b/youtube_dl/extractor/imgur.py @@ -12,7 +12,7 @@ from ..utils import ( class ImgurIE(InfoExtractor): - _VALID_URL = r'https?://(?:i\.)?imgur\.com/(?:(?:gallery|(?:topic|r)/[^/]+)/)?(?P<id>[a-zA-Z0-9]{6,})(?:[/?#&]+|\.[a-z]+)?$' + _VALID_URL = r'https?://(?:i\.)?imgur\.com/(?:(?:gallery|(?:topic|r)/[^/]+)/)?(?P<id>[a-zA-Z0-9]{6,})(?:[/?#&]+|\.[a-z0-9]+)?$' _TESTS = [{ 'url': 'https://i.imgur.com/A61SaA1.gifv', @@ -43,6 +43,9 @@ class ImgurIE(InfoExtractor): }, { 'url': 'http://imgur.com/r/aww/VQcQPhM', 'only_matching': True, + }, { + 'url': 'https://i.imgur.com/crGpqCV.mp4', + 'only_matching': True, }] def _real_extract(self, url): |