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