mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[youtube] Use authentication for entry list base extractor (Closes #8380)
This commit is contained in:
parent
7b7507d6e1
commit
8e7aad2075
1 changed files with 2 additions and 2 deletions
|
@ -181,7 +181,7 @@ def _real_initialize(self):
|
|||
return
|
||||
|
||||
|
||||
class YoutubeEntryListBaseInfoExtractor(InfoExtractor):
|
||||
class YoutubeEntryListBaseInfoExtractor(YoutubeBaseInfoExtractor):
|
||||
# Extract entries from page with "Load more" button
|
||||
def _entries(self, page, playlist_id):
|
||||
more_widget_html = content_html = page
|
||||
|
@ -1602,7 +1602,7 @@ def _map_to_format_list(urlmap):
|
|||
}
|
||||
|
||||
|
||||
class YoutubePlaylistIE(YoutubeBaseInfoExtractor, YoutubePlaylistBaseInfoExtractor):
|
||||
class YoutubePlaylistIE(YoutubePlaylistBaseInfoExtractor):
|
||||
IE_DESC = 'YouTube.com playlists'
|
||||
_VALID_URL = r"""(?x)(?:
|
||||
(?:https?://)?
|
||||
|
|
Loading…
Reference in a new issue