parent
1fafb32984
commit
a1d1c63678
1 changed files with 2 additions and 1 deletions
|
@ -92,7 +92,8 @@ class ScreencastIE(InfoExtractor):
|
||||||
|
|
||||||
if video_url is None:
|
if video_url is None:
|
||||||
video_url = self._html_search_regex(
|
video_url = self._html_search_regex(
|
||||||
r'"MediaContentUrl":"([^"]+)"', webpage, 'media content url', default=None)
|
r'MediaContentUrl["\']\s*:(["\'])(?P<url>(?:(?!\1).)+)\1',
|
||||||
|
webpage, 'video url', default=None, group='url')
|
||||||
|
|
||||||
if video_url is None:
|
if video_url is None:
|
||||||
video_url = self._html_search_meta(
|
video_url = self._html_search_meta(
|
||||||
|
|
Loading…
Reference in a new issue