Browse Source

[npo:live] Improve (closes #12555)

master-ytdl-org
Sergey M․ 8 years ago
parent
commit
04e431cf97
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 2 additions and 11 deletions
  1. +2
    -11
      youtube_dl/extractor/npo.py

+ 2
- 11
youtube_dl/extractor/npo.py View File

@ -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):


Loading…
Cancel
Save