1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-06-28 20:21:09 +02:00

[spankbang] Make uploader optional (closes #12193)

This commit is contained in:
Sergey M․ 2017-02-21 00:54:43 +07:00
parent 3ccdde8cb7
commit 6926304472
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D

View File

@ -23,6 +23,10 @@ class SpankBangIE(InfoExtractor):
# 480p only
'url': 'http://spankbang.com/1vt0/video/solvane+gangbang',
'only_matching': True,
}, {
# no uploader
'url': 'http://spankbang.com/lklg/video/sex+with+anyone+wedding+edition+2',
'only_matching': True,
}]
def _real_extract(self, url):
@ -48,7 +52,7 @@ def _real_extract(self, url):
thumbnail = self._og_search_thumbnail(webpage)
uploader = self._search_regex(
r'class="user"[^>]*><img[^>]+>([^<]+)',
webpage, 'uploader', fatal=False)
webpage, 'uploader', default=None)
age_limit = self._rta_search(webpage)