youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 7a5773090789bec38a3f58dfb09039155919a540
parent 8b347a389eaa6d545ada901c2e236a5eb2272960
Author: rrooij <rrooij@users.noreply.github.com>
Date:   Sun,  9 Jul 2017 09:21:40 +0200

[npo:live] Fix live stream id extraction (closes #13568)


Diffstat:
Myoutube_dl/extractor/npo.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/npo.py b/youtube_dl/extractor/npo.py @@ -341,7 +341,7 @@ class NPOLiveIE(NPOBaseIE): webpage = self._download_webpage(url, display_id) live_id = self._search_regex( - r'data-prid="([^"]+)"', webpage, 'live id') + [r'media-id="([^"]+)"', r'data-prid="([^"]+)"'], webpage, 'live id') return { '_type': 'url_transparent',