mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-05 09:57:59 +09:00
[youtube:channel] Fix automated channel detection
This commit is contained in:
parent
11bf848191
commit
31812a9e0e
@ -1631,10 +1631,11 @@ class YoutubeChannelIE(InfoExtractor):
|
||||
video_ids = []
|
||||
url = 'https://www.youtube.com/channel/%s/videos' % channel_id
|
||||
channel_page = self._download_webpage(url, channel_id)
|
||||
if re.search(r'channel-header-autogenerated-label', channel_page) is not None:
|
||||
autogenerated = True
|
||||
else:
|
||||
autogenerated = False
|
||||
autogenerated = re.search(r'''(?x)
|
||||
class="[^"]*?(?:
|
||||
channel-header-autogenerated-label|
|
||||
yt-channel-title-autogenerated
|
||||
)[^"]*"''', channel_page) is not None
|
||||
|
||||
if autogenerated:
|
||||
# The videos are contained in a single page
|
||||
|
Loading…
Reference in New Issue
Block a user