diff options
author | bitraid <bitraid@protonmail.ch> | 2019-02-12 19:02:29 +0200 |
---|---|---|
committer | Sergey M <dstftw@gmail.com> | 2019-02-13 00:02:29 +0700 |
commit | 6f5c1807f43b9dfd17fdc6932ae7ecb6c77fb1a0 (patch) | |
tree | e3d3ba6fbe2f8223fe9fdfac4f0b96f0fd912146 /youtube_dl/extractor | |
parent | 985637cbbfc1a79091eb2f5ca4afec84f6616c75 (diff) |
[imgur] Use video id as title fallback (closes #18590)
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/imgur.py | 6 |
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), } |