mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05: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
1 changed files with 2 additions and 1 deletions
|
@ -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 a new issue