aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/npo.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2017-04-08 21:31:22 +0700
committerSergey M․ <dstftw@gmail.com>2017-04-08 21:31:22 +0700
commit04e431cf97e8b73190e8db77de0e3d2b5655c195 (patch)
tree86ae391b62c429aca4b5acb2ca99c87048f45a12 /youtube_dl/extractor/npo.py
parent1591ba258a49b682124e6e545c13a5da3bc660e0 (diff)
downloadyoutube-dl-04e431cf97e8b73190e8db77de0e3d2b5655c195.zip
youtube-dl-04e431cf97e8b73190e8db77de0e3d2b5655c195.tar.gz
youtube-dl-04e431cf97e8b73190e8db77de0e3d2b5655c195.tar.bz2
[npo:live] Improve (closes #12555)
Diffstat (limited to 'youtube_dl/extractor/npo.py')
-rw-r--r--youtube_dl/extractor/npo.py13
1 files changed, 2 insertions, 11 deletions
diff --git a/youtube_dl/extractor/npo.py b/youtube_dl/extractor/npo.py
index d1c9bc2..79296f0 100644
--- a/youtube_dl/extractor/npo.py
+++ b/youtube_dl/extractor/npo.py
@@ -313,7 +313,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\.nl/live(?:/(?P<id>[^/?#&]+))?'
_TESTS = [{
'url': 'http://www.npo.nl/live/npo-1',
@@ -329,16 +329,7 @@ class NPOLiveIE(NPOBaseIE):
}
}, {
'url': 'http://www.npo.nl/live',
- 'info_dict': {
- 'id': 'LI_NL1_4188102',
- 'display_id': 'npo-1',
- 'ext': 'mp4',
- 'title': 're:^NPO 1 [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$',
- 'is_live': True,
- },
- 'params': {
- 'skip_download': True,
- }
+ 'only_matching': True,
}]
def _real_extract(self, url):