Sergey M․
8 years ago
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D
1 changed files with
2 additions and
1 deletions
-
youtube_dl/extractor/keezmovies.py
|
|
@ -39,7 +39,8 @@ class KeezMoviesIE(InfoExtractor): |
|
|
|
def _extract_info(self, url): |
|
|
|
mobj = re.match(self._VALID_URL, url) |
|
|
|
video_id = mobj.group('id') |
|
|
|
display_id = mobj.group('display_id') or video_id |
|
|
|
display_id = (mobj.group('display_id') if 'display_id' |
|
|
|
in mobj.groupdict() else None) or mobj.group('id') |
|
|
|
|
|
|
|
webpage = self._download_webpage( |
|
|
|
url, display_id, headers={'Cookie': 'age_verified=1'}) |
|
|
|