[uktvplay] match new video URLs(closes #17909)
This commit is contained in:
parent
c931c4b8dd
commit
53528e1d23
|
@ -5,10 +5,9 @@ from .common import InfoExtractor
|
||||||
|
|
||||||
|
|
||||||
class UKTVPlayIE(InfoExtractor):
|
class UKTVPlayIE(InfoExtractor):
|
||||||
_VALID_URL = r'https?://uktvplay\.uktv\.co\.uk/.+?\?.*?\bvideo=(?P<id>\d+)'
|
_VALID_URL = r'https?://uktvplay\.uktv\.co\.uk/(?:.+?\?.*?\bvideo=|([^/]+/)*watch-online/)(?P<id>\d+)'
|
||||||
_TEST = {
|
_TESTS = [{
|
||||||
'url': 'https://uktvplay.uktv.co.uk/shows/world-at-war/c/200/watch-online/?video=2117008346001',
|
'url': 'https://uktvplay.uktv.co.uk/shows/world-at-war/c/200/watch-online/?video=2117008346001',
|
||||||
'md5': '',
|
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': '2117008346001',
|
'id': '2117008346001',
|
||||||
'ext': 'mp4',
|
'ext': 'mp4',
|
||||||
|
@ -23,7 +22,11 @@ class UKTVPlayIE(InfoExtractor):
|
||||||
'skip_download': True,
|
'skip_download': True,
|
||||||
},
|
},
|
||||||
'expected_warnings': ['Failed to download MPD manifest']
|
'expected_warnings': ['Failed to download MPD manifest']
|
||||||
}
|
}, {
|
||||||
|
'url': 'https://uktvplay.uktv.co.uk/shows/africa/watch-online/5983349675001',
|
||||||
|
'only_matching': True,
|
||||||
|
}]
|
||||||
|
# BRIGHTCOVE_URL_TEMPLATE = 'https://players.brightcove.net/1242911124001/OrCyvJ2gyL_default/index.html?videoId=%s'
|
||||||
BRIGHTCOVE_URL_TEMPLATE = 'http://players.brightcove.net/1242911124001/H1xnMOqP_default/index.html?videoId=%s'
|
BRIGHTCOVE_URL_TEMPLATE = 'http://players.brightcove.net/1242911124001/H1xnMOqP_default/index.html?videoId=%s'
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
|
|
Loading…
Reference in New Issue