mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 20:17:22 +01:00
[extractor/BiliLive] Fix extractor
- Remove unnecessary group in `_VALID_URL` - This extractor always returns livestreams
This commit is contained in:
parent
c1edb853b0
commit
ca2f6e14e6
@ -1034,7 +1034,7 @@ def _real_extract(self, url):
|
||||
|
||||
|
||||
class BiliLiveIE(InfoExtractor):
|
||||
_VALID_URL = r'https?://live.bilibili.com/(blanc/)?(?P<id>\d+)'
|
||||
_VALID_URL = r'https?://live.bilibili.com/(?:blanc/)?(?P<id>\d+)'
|
||||
|
||||
_TESTS = [{
|
||||
'url': 'https://live.bilibili.com/196',
|
||||
@ -1114,6 +1114,7 @@ def _real_extract(self, url):
|
||||
'thumbnail': room_data.get('user_cover'),
|
||||
'timestamp': stream_data.get('live_time'),
|
||||
'formats': formats,
|
||||
'is_live': True,
|
||||
'http_headers': {
|
||||
'Referer': url,
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user