Sergey M․
8 years ago
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D
1 changed files with
1 additions and
1 deletions
-
youtube_dl/extractor/videomore.py
|
@ -84,7 +84,7 @@ class VideomoreIE(InfoExtractor): |
|
|
@staticmethod |
|
|
@staticmethod |
|
|
def _extract_url(webpage): |
|
|
def _extract_url(webpage): |
|
|
mobj = re.search( |
|
|
mobj = re.search( |
|
|
r'<object[^>]+data=(["\'])https?://videomore.ru/player\.swf\?.*config=(?P<url>https?://videomore\.ru/(?:[^/]+/)+\d+\.xml).*\1', |
|
|
|
|
|
|
|
|
r'<object[^>]+data=(["\'])https?://videomore\.ru/player\.swf\?.*config=(?P<url>https?://videomore\.ru/(?:[^/]+/)+\d+\.xml).*\1', |
|
|
webpage) |
|
|
webpage) |
|
|
if mobj: |
|
|
if mobj: |
|
|
return mobj.group('url') |
|
|
return mobj.group('url') |
|
|