about summary refs log tree commit diff
path: root/youtube_dl/extractor/imgur.py
diff options
context:
space:
mode:
authorbitraid <bitraid@protonmail.ch>2019-02-12 19:02:29 +0200
committerSergey M <dstftw@gmail.com>2019-02-13 00:02:29 +0700
commit6f5c1807f43b9dfd17fdc6932ae7ecb6c77fb1a0 (patch)
treee3d3ba6fbe2f8223fe9fdfac4f0b96f0fd912146 /youtube_dl/extractor/imgur.py
parent985637cbbfc1a79091eb2f5ca4afec84f6616c75 (diff)
downloadyoutube-dl-6f5c1807f43b9dfd17fdc6932ae7ecb6c77fb1a0.tar.gz
youtube-dl-6f5c1807f43b9dfd17fdc6932ae7ecb6c77fb1a0.tar.xz
youtube-dl-6f5c1807f43b9dfd17fdc6932ae7ecb6c77fb1a0.zip
[imgur] Use video id as title fallback (closes #18590)
Diffstat (limited to 'youtube_dl/extractor/imgur.py')
-rw-r--r--youtube_dl/extractor/imgur.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/youtube_dl/extractor/imgur.py b/youtube_dl/extractor/imgur.py
index 0eb54db3f..a5ba03efa 100644
--- a/youtube_dl/extractor/imgur.py
+++ b/youtube_dl/extractor/imgur.py
@@ -27,6 +27,10 @@ class ImgurIE(InfoExtractor):
     }, {
         'url': 'https://i.imgur.com/crGpqCV.mp4',
         'only_matching': True,
+    }, {
+        # no title
+        'url': 'https://i.imgur.com/jxBXAMC.gifv',
+        'only_matching': True,
     }]
 
     def _real_extract(self, url):
@@ -87,7 +91,7 @@ class ImgurIE(InfoExtractor):
         return {
             'id': video_id,
             'formats': formats,
-            'title': self._og_search_title(webpage),
+            'title': self._og_search_title(webpage, default=video_id),
         }