mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-15 21:03:18 +00:00
[ie/bilibili] Support --no-playlist
(#9139)
Addresses #8499 Authored by: c-basalt
This commit is contained in:
parent
96d0f8c1cb
commit
e439693f72
|
@ -1305,6 +1305,26 @@ class BilibiliPlaylistIE(BilibiliSpaceListBaseIE):
|
||||||
'upload_date': '20211127',
|
'upload_date': '20211127',
|
||||||
},
|
},
|
||||||
'playlist_mincount': 513,
|
'playlist_mincount': 513,
|
||||||
|
}, {
|
||||||
|
'url': 'https://www.bilibili.com/list/1958703906?sid=547718&oid=687146339&bvid=BV1DU4y1r7tz',
|
||||||
|
'info_dict': {
|
||||||
|
'id': 'BV1DU4y1r7tz',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': '【直播回放】8.20晚9:30 3d发布喵 2022年8月20日21点场',
|
||||||
|
'upload_date': '20220820',
|
||||||
|
'description': '',
|
||||||
|
'timestamp': 1661016330,
|
||||||
|
'uploader_id': '1958703906',
|
||||||
|
'uploader': '靡烟miya',
|
||||||
|
'thumbnail': r're:^https?://.*\.(jpg|jpeg|png)$',
|
||||||
|
'duration': 9552.903,
|
||||||
|
'tags': list,
|
||||||
|
'comment_count': int,
|
||||||
|
'view_count': int,
|
||||||
|
'like_count': int,
|
||||||
|
'_old_archive_ids': ['bilibili 687146339_part1'],
|
||||||
|
},
|
||||||
|
'params': {'noplaylist': True},
|
||||||
}, {
|
}, {
|
||||||
'url': 'https://www.bilibili.com/medialist/play/1958703906?business=space_series&business_id=547718&desc=1',
|
'url': 'https://www.bilibili.com/medialist/play/1958703906?business=space_series&business_id=547718&desc=1',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
|
@ -1356,6 +1376,11 @@ def _extract_medialist(self, query, list_id):
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
list_id = self._match_id(url)
|
list_id = self._match_id(url)
|
||||||
|
|
||||||
|
bvid = traverse_obj(parse_qs(url), ('bvid', 0))
|
||||||
|
if not self._yes_playlist(list_id, bvid):
|
||||||
|
return self.url_result(f'https://www.bilibili.com/video/{bvid}', BiliBiliIE)
|
||||||
|
|
||||||
webpage = self._download_webpage(url, list_id)
|
webpage = self._download_webpage(url, list_id)
|
||||||
initial_state = self._search_json(r'window\.__INITIAL_STATE__\s*=', webpage, 'initial state', list_id)
|
initial_state = self._search_json(r'window\.__INITIAL_STATE__\s*=', webpage, 'initial state', list_id)
|
||||||
if traverse_obj(initial_state, ('error', 'code', {int_or_none})) != 200:
|
if traverse_obj(initial_state, ('error', 'code', {int_or_none})) != 200:
|
||||||
|
|
Loading…
Reference in a new issue