From b226540afa1bed7709d4e1947030a72f96bb3dab Mon Sep 17 00:00:00 2001 From: Tibor Kanyo Date: Sat, 27 May 2017 20:23:43 +0200 Subject: [PATCH] Update indavideo.py with a valid regex to embed URL --- youtube_dl/extractor/indavideo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/extractor/indavideo.py b/youtube_dl/extractor/indavideo.py index 11cf3c609..9d1db2361 100644 --- a/youtube_dl/extractor/indavideo.py +++ b/youtube_dl/extractor/indavideo.py @@ -133,7 +133,7 @@ class IndavideoIE(InfoExtractor): webpage = self._download_webpage(url, display_id) embed_url = self._search_regex( - r']+rel="video_src"[^>]+href="(.+?)"', webpage, 'embed url') + r']+id="player".*>]+src="(.+?)"', webpage, 'embed url') return { '_type': 'url_transparent',