[imgur] Allow digits in filename extension
authorJakub Wilk <jwilk@jwilk.net>
Wed, 18 Jul 2018 16:47:26 +0000 (18:47 +0200)
committerSergey M <dstftw@gmail.com>
Wed, 18 Jul 2018 16:47:26 +0000 (23:47 +0700)
youtube_dl/extractor/imgur.py

index 2901960a51f8faa28975a7c5bef7b965062573ba..ecc958a1717d35ad37cc68c3b44147f3d0db6161 100644 (file)
@@ -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):