mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 06:27:21 +00:00
[ie/uktvplay] DRM protected
This commit is contained in:
parent
983c58fb7a
commit
8be4cc2dab
|
@ -1569,7 +1569,6 @@ # Supported sites
|
||||||
- **UFCArabia**: [*ufcarabia*](## "netrc machine")
|
- **UFCArabia**: [*ufcarabia*](## "netrc machine")
|
||||||
- **UFCTV**: [*ufctv*](## "netrc machine")
|
- **UFCTV**: [*ufctv*](## "netrc machine")
|
||||||
- **ukcolumn**: (**Currently broken**)
|
- **ukcolumn**: (**Currently broken**)
|
||||||
- **UKTVPlay**
|
|
||||||
- **umg:de**: Universal Music Deutschland (**Currently broken**)
|
- **umg:de**: Universal Music Deutschland (**Currently broken**)
|
||||||
- **Unistra**
|
- **Unistra**
|
||||||
- **Unity**: (**Currently broken**)
|
- **Unity**: (**Currently broken**)
|
||||||
|
|
|
@ -2248,7 +2248,6 @@
|
||||||
UFCArabiaIE,
|
UFCArabiaIE,
|
||||||
)
|
)
|
||||||
from .ukcolumn import UkColumnIE
|
from .ukcolumn import UkColumnIE
|
||||||
from .uktvplay import UKTVPlayIE
|
|
||||||
from .umg import UMGDeIE
|
from .umg import UMGDeIE
|
||||||
from .unistra import UnistraIE
|
from .unistra import UnistraIE
|
||||||
from .unity import UnityIE
|
from .unity import UnityIE
|
||||||
|
|
|
@ -1,36 +0,0 @@
|
||||||
from .common import InfoExtractor
|
|
||||||
|
|
||||||
|
|
||||||
class UKTVPlayIE(InfoExtractor):
|
|
||||||
_VALID_URL = r'https?://uktvplay\.(?:uktv\.)?co\.uk/(?:.+?\?.*?\bvideo=|([^/]+/)*)(?P<id>\d+)'
|
|
||||||
_TESTS = [{
|
|
||||||
'url': 'https://uktvplay.uktv.co.uk/shows/world-at-war/c/200/watch-online/?video=2117008346001',
|
|
||||||
'info_dict': {
|
|
||||||
'id': '2117008346001',
|
|
||||||
'ext': 'mp4',
|
|
||||||
'title': 'Pincers',
|
|
||||||
'description': 'Pincers',
|
|
||||||
'uploader_id': '1242911124001',
|
|
||||||
'upload_date': '20130124',
|
|
||||||
'timestamp': 1359049267,
|
|
||||||
},
|
|
||||||
'params': {
|
|
||||||
# m3u8 download
|
|
||||||
'skip_download': True,
|
|
||||||
},
|
|
||||||
'expected_warnings': ['Failed to download MPD manifest'],
|
|
||||||
}, {
|
|
||||||
'url': 'https://uktvplay.uktv.co.uk/shows/africa/watch-online/5983349675001',
|
|
||||||
'only_matching': True,
|
|
||||||
}, {
|
|
||||||
'url': 'https://uktvplay.co.uk/shows/hornby-a-model-world/series-1/episode-1/6276739790001?autoplaying=true',
|
|
||||||
'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'
|
|
||||||
|
|
||||||
def _real_extract(self, url):
|
|
||||||
video_id = self._match_id(url)
|
|
||||||
return self.url_result(
|
|
||||||
self.BRIGHTCOVE_URL_TEMPLATE % video_id,
|
|
||||||
'BrightcoveNew', video_id)
|
|
|
@ -50,6 +50,7 @@ class KnownDRMIE(UnsupportedInfoExtractor):
|
||||||
r'music\.amazon\.(?:\w{2}\.)?\w+',
|
r'music\.amazon\.(?:\w{2}\.)?\w+',
|
||||||
r'(?:watch|front)\.njpwworld\.com',
|
r'(?:watch|front)\.njpwworld\.com',
|
||||||
r'qub\.ca/vrai',
|
r'qub\.ca/vrai',
|
||||||
|
r'https?://(?:uktvplay(?:\.uktv)?|u)\.co\.uk',
|
||||||
)
|
)
|
||||||
|
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
|
|
Loading…
Reference in a new issue