summary refs log tree commit diff
diff options
context:
space:
mode:
authorAnh Nhan Nguyen <anhnhan@outlook.com>2019-10-04 14:27:58 +0200
committerSergey M <dstftw@gmail.com>2019-10-04 19:27:58 +0700
commit0b87beefe60fb6ae52529603fd5826364146dfb7 (patch)
tree4378515c0f8371da5d1f26c6b76fab2c64fedbfd
parentfd4db1ebc231b65bea91add4cd55ce564b05eee3 (diff)
downloadyoutube-dl-0b87beefe60fb6ae52529603fd5826364146dfb7.tar.gz
youtube-dl-0b87beefe60fb6ae52529603fd5826364146dfb7.tar.xz
youtube-dl-0b87beefe60fb6ae52529603fd5826364146dfb7.zip
[gfycat] Extend _VALID_URL (#22225)
-rw-r--r--youtube_dl/extractor/gfycat.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/youtube_dl/extractor/gfycat.py b/youtube_dl/extractor/gfycat.py
index bbe3cb283..18a30fe67 100644
--- a/youtube_dl/extractor/gfycat.py
+++ b/youtube_dl/extractor/gfycat.py
@@ -11,7 +11,7 @@ from ..utils import (
 
 
 class GfycatIE(InfoExtractor):
-    _VALID_URL = r'https?://(?:www\.)?gfycat\.com/(?:ru/|ifr/|gifs/detail/)?(?P<id>[^-/?#]+)'
+    _VALID_URL = r'https?://(?:(?:www|giant|thumbs)\.)?gfycat\.com/(?:ru/|ifr/|gifs/detail/)?(?P<id>[^-/?#\.]+)'
     _TESTS = [{
         'url': 'http://gfycat.com/DeadlyDecisiveGermanpinscher',
         'info_dict': {
@@ -53,6 +53,12 @@ class GfycatIE(InfoExtractor):
     }, {
         'url': 'https://gfycat.com/acceptablehappygoluckyharborporpoise-baseball',
         'only_matching': True
+    }, {
+        'url': 'https://thumbs.gfycat.com/acceptablehappygoluckyharborporpoise-size_restricted.gif',
+        'only_matching': True
+    }, {
+        'url': 'https://giant.gfycat.com/acceptablehappygoluckyharborporpoise.mp4',
+        'only_matching': True
     }]
 
     def _real_extract(self, url):