mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 23:43:20 +00:00
[uplynk,viceland] update tests and change uplynk extractors names
This commit is contained in:
parent
525e0316c0
commit
24eb13b1c6
|
@ -11,6 +11,7 @@
|
|||
|
||||
|
||||
class UplynkIE(InfoExtractor):
|
||||
IE_NAME = 'uplynk'
|
||||
_VALID_URL = r'https?://.*?\.uplynk\.com/(?P<path>ext/[0-9a-f]{32}/(?P<external_id>[^/?&]+)|(?P<id>[0-9a-f]{32}))\.(?:m3u8|json)(?:.*?\bpbs=(?P<session_id>[^&]+))?'
|
||||
_TEST = {
|
||||
'url': 'http://content.uplynk.com/e89eaf2ce9054aa89d92ddb2d817a52e.m3u8',
|
||||
|
@ -54,7 +55,9 @@ def _real_extract(self, url):
|
|||
|
||||
|
||||
class UplynkPreplayIE(UplynkIE):
|
||||
IE_NAME = 'uplynk:preplay'
|
||||
_VALID_URL = r'https?://.*?\.uplynk\.com/preplay2?/(?P<path>ext/[0-9a-f]{32}/(?P<external_id>[^/?&]+)|(?P<id>[0-9a-f]{32}))\.json'
|
||||
_TEST = None
|
||||
|
||||
def _real_extract(self, url):
|
||||
path, external_id, video_id = re.match(self._VALID_URL, url).groups()
|
||||
|
|
|
@ -36,7 +36,7 @@ class VicelandIE(AdobePass):
|
|||
# m3u8 download
|
||||
'skip_download': True,
|
||||
},
|
||||
'add_ie': ['UplynkPreplay', 'Uplynk'],
|
||||
'add_ie': ['UplynkPreplay'],
|
||||
}
|
||||
|
||||
def _real_extract(self, url):
|
||||
|
|
Loading…
Reference in a new issue