mirror of
https://github.com/l1ving/youtube-dl
synced 2025-02-05 17:12:51 +08:00
Use exact match for 'dot' char in regex used to extract vrt.be video_url
This commit is contained in:
parent
9b91681a1a
commit
762cc052d4
@ -176,7 +176,7 @@ class MediahuisIE(InfoExtractor):
|
|||||||
iframe_m = re.search(r'<iframe[^>]+src="(.+?vrt\.be.*?)"', webpage)
|
iframe_m = re.search(r'<iframe[^>]+src="(.+?vrt\.be.*?)"', webpage)
|
||||||
if iframe_m:
|
if iframe_m:
|
||||||
webpage = self._download_webpage(iframe_m.group(1), "vrt-iframe")
|
webpage = self._download_webpage(iframe_m.group(1), "vrt-iframe")
|
||||||
video_url = self._search_regex(r'sources.pdl\s*=\s*"(.*?)";', webpage, 'vrt-video')
|
video_url = self._search_regex(r'sources\.pdl\s*=\s*"(.*?)";', webpage, 'vrt-video')
|
||||||
|
|
||||||
iframe_m = re.search(r'<iframe[^>]+src="(.+?vmma\.be.*?)"', webpage)
|
iframe_m = re.search(r'<iframe[^>]+src="(.+?vmma\.be.*?)"', webpage)
|
||||||
if iframe_m:
|
if iframe_m:
|
||||||
|
Loading…
Reference in New Issue
Block a user