mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 18:33:17 +00:00
[ie/twitcasting] Improve _VALID_URL
(#8120)
Closes #7597 Authored by: c-basalt
This commit is contained in:
parent
069cbece9d
commit
cebbd33b1c
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
|
|
||||||
class TwitCastingIE(InfoExtractor):
|
class TwitCastingIE(InfoExtractor):
|
||||||
_VALID_URL = r'https?://(?:[^/]+\.)?twitcasting\.tv/(?P<uploader_id>[^/]+)/(?:movie|twplayer)/(?P<id>\d+)'
|
_VALID_URL = r'https?://(?:[^/?#]+\.)?twitcasting\.tv/(?P<uploader_id>[^/?#]+)/(?:movie|twplayer)/(?P<id>\d+)'
|
||||||
_M3U8_HEADERS = {
|
_M3U8_HEADERS = {
|
||||||
'Origin': 'https://twitcasting.tv',
|
'Origin': 'https://twitcasting.tv',
|
||||||
'Referer': 'https://twitcasting.tv/',
|
'Referer': 'https://twitcasting.tv/',
|
||||||
|
@ -231,7 +231,7 @@ def find_dmu(x):
|
||||||
|
|
||||||
|
|
||||||
class TwitCastingLiveIE(InfoExtractor):
|
class TwitCastingLiveIE(InfoExtractor):
|
||||||
_VALID_URL = r'https?://(?:[^/]+\.)?twitcasting\.tv/(?P<id>[^/]+)/?(?:[#?]|$)'
|
_VALID_URL = r'https?://(?:[^/?#]+\.)?twitcasting\.tv/(?P<id>[^/?#]+)/?(?:[#?]|$)'
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
'url': 'https://twitcasting.tv/ivetesangalo',
|
'url': 'https://twitcasting.tv/ivetesangalo',
|
||||||
'only_matching': True,
|
'only_matching': True,
|
||||||
|
@ -265,8 +265,15 @@ def _real_extract(self, url):
|
||||||
|
|
||||||
|
|
||||||
class TwitCastingUserIE(InfoExtractor):
|
class TwitCastingUserIE(InfoExtractor):
|
||||||
_VALID_URL = r'https?://(?:[^/]+\.)?twitcasting\.tv/(?P<id>[^/]+)/show/?(?:[#?]|$)'
|
_VALID_URL = r'https?://(?:[^/?#]+\.)?twitcasting\.tv/(?P<id>[^/?#]+)/(:?show|archive)/?(?:[#?]|$)'
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
|
'url': 'https://twitcasting.tv/natsuiromatsuri/archive/',
|
||||||
|
'info_dict': {
|
||||||
|
'id': 'natsuiromatsuri',
|
||||||
|
'title': 'natsuiromatsuri - Live History',
|
||||||
|
},
|
||||||
|
'playlist_mincount': 235,
|
||||||
|
}, {
|
||||||
'url': 'https://twitcasting.tv/noriyukicas/show',
|
'url': 'https://twitcasting.tv/noriyukicas/show',
|
||||||
'only_matching': True,
|
'only_matching': True,
|
||||||
}]
|
}]
|
||||||
|
|
Loading…
Reference in a new issue