Sergey M․
6 years ago
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D
1 changed files with
4 additions and
1 deletions
-
youtube_dl/extractor/npo.py
|
|
@ -363,7 +363,7 @@ class NPOIE(NPOBaseIE): |
|
|
|
|
|
|
|
class NPOLiveIE(NPOBaseIE): |
|
|
|
IE_NAME = 'npo.nl:live' |
|
|
|
_VALID_URL = r'https?://(?:www\.)?npo\.nl/live(?:/(?P<id>[^/?#&]+))?' |
|
|
|
_VALID_URL = r'https?://(?:www\.)?npo(?:start)?\.nl/live(?:/(?P<id>[^/?#&]+))?' |
|
|
|
|
|
|
|
_TESTS = [{ |
|
|
|
'url': 'http://www.npo.nl/live/npo-1', |
|
|
@ -380,6 +380,9 @@ class NPOLiveIE(NPOBaseIE): |
|
|
|
}, { |
|
|
|
'url': 'http://www.npo.nl/live', |
|
|
|
'only_matching': True, |
|
|
|
}, { |
|
|
|
'url': 'https://www.npostart.nl/live/npo-1', |
|
|
|
'only_matching': True, |
|
|
|
}] |
|
|
|
|
|
|
|
def _real_extract(self, url): |
|
|
|