Sergey M․
7 years ago
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D
1 changed files with
5 additions and
1 deletions
-
youtube_dl/extractor/spankbang.py
|
|
@ -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 @@ class SpankBangIE(InfoExtractor): |
|
|
|
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) |
|
|
|
|
|
|
|