mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-08 19:27:30 -05:00
[youtube] Fix feed extraction
This moves feed extraction from using html content to json metadata. However, loading additional pages no longer works. The _extract_video_info function also returns a continuation object that contains some metadata that - together with an API key that is in the page source - might be used to request the next page.
This commit is contained in:
parent
6dad89289c
commit
57f72370c5
@ -3282,10 +3282,12 @@ class YoutubeShowIE(YoutubePlaylistsBaseInfoExtractor):
|
|||||||
class YoutubeFeedsInfoExtractor(YoutubeBaseInfoExtractor):
|
class YoutubeFeedsInfoExtractor(YoutubeBaseInfoExtractor):
|
||||||
"""
|
"""
|
||||||
Base class for feed extractors
|
Base class for feed extractors
|
||||||
Subclasses must define the _FEED_NAME and _PLAYLIST_TITLE properties.
|
Subclasses must define the _FEED_NAME and _PLAYLIST_TITLE properties as well as an _extract_video_info function.
|
||||||
"""
|
"""
|
||||||
_LOGIN_REQUIRED = True
|
_LOGIN_REQUIRED = True
|
||||||
|
|
||||||
|
_FEED_DATA = r'window\[\"ytInitialData\"\]\W?=\W?({.*?});'
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def IE_NAME(self):
|
def IE_NAME(self):
|
||||||
return 'youtube:%s' % self._FEED_NAME
|
return 'youtube:%s' % self._FEED_NAME
|
||||||
@ -3296,34 +3298,41 @@ class YoutubeFeedsInfoExtractor(YoutubeBaseInfoExtractor):
|
|||||||
def _entries(self, page):
|
def _entries(self, page):
|
||||||
# The extraction process is the same as for playlists, but the regex
|
# The extraction process is the same as for playlists, but the regex
|
||||||
# for the video ids doesn't contain an index
|
# for the video ids doesn't contain an index
|
||||||
ids = []
|
info = []
|
||||||
more_widget_html = content_html = page
|
|
||||||
for page_num in itertools.count(1):
|
for page_num in itertools.count(1):
|
||||||
matches = re.findall(r'href="\s*/watch\?v=([0-9A-Za-z_-]{11})', content_html)
|
search_response = self._parse_json(self._search_regex(self._FEED_DATA, page, 'ytInitialData'), None)
|
||||||
|
|
||||||
# 'recommended' feed has infinite 'load more' and each new portion spins
|
video_info, continuation = self._extract_video_info(search_response)
|
||||||
# the same videos in (sometimes) slightly different order, so we'll check
|
|
||||||
# for unicity and break when portion has no new videos
|
new_info = []
|
||||||
new_ids = list(filter(lambda video_id: video_id not in ids, orderedSet(matches)))
|
|
||||||
if not new_ids:
|
for v in video_info:
|
||||||
|
v_id = try_get(v, lambda x: x['videoId'])
|
||||||
|
if not v_id:
|
||||||
|
continue
|
||||||
|
|
||||||
|
have_video = False
|
||||||
|
for old in info:
|
||||||
|
if old['videoId'] == v_id:
|
||||||
|
have_video = True
|
||||||
|
break
|
||||||
|
|
||||||
|
if not have_video:
|
||||||
|
new_info.append(v)
|
||||||
|
|
||||||
|
if not new_info:
|
||||||
break
|
break
|
||||||
|
|
||||||
ids.extend(new_ids)
|
info.extend(new_info)
|
||||||
|
|
||||||
for entry in self._ids_to_results(new_ids):
|
for video in new_info:
|
||||||
yield entry
|
yield self.url_result(try_get(video, lambda x: x['videoId']), YoutubeIE.ie_key(), video_title=try_get(video, lambda x: x['title']['simpleText']))
|
||||||
|
|
||||||
mobj = re.search(r'data-uix-load-more-href="/?(?P<more>[^"]+)"', more_widget_html)
|
if not continuation:
|
||||||
if not mobj:
|
|
||||||
break
|
break
|
||||||
|
|
||||||
more = self._download_json(
|
# TODO: Fix continuation request to download more pages
|
||||||
'https://youtube.com/%s' % mobj.group('more'), self._PLAYLIST_TITLE,
|
|
||||||
'Downloading page #%s' % page_num,
|
|
||||||
transform_source=uppercase_escape,
|
|
||||||
headers=self._YOUTUBE_CLIENT_HEADERS)
|
|
||||||
content_html = more['content_html']
|
|
||||||
more_widget_html = more['load_more_widget_html']
|
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
page = self._download_webpage(
|
page = self._download_webpage(
|
||||||
@ -3372,6 +3381,32 @@ class YoutubeRecommendedIE(YoutubeFeedsInfoExtractor):
|
|||||||
_FEED_NAME = 'recommended'
|
_FEED_NAME = 'recommended'
|
||||||
_PLAYLIST_TITLE = 'Youtube Recommended videos'
|
_PLAYLIST_TITLE = 'Youtube Recommended videos'
|
||||||
|
|
||||||
|
def _extract_video_info(self, initial_data):
|
||||||
|
videos = []
|
||||||
|
continuation_renderer = None
|
||||||
|
|
||||||
|
renderers = try_get(
|
||||||
|
initial_data,
|
||||||
|
lambda x: x['contents']['twoColumnBrowseResultsRenderer']['tabs'][0]['tabRenderer']['content']['richGridRenderer']['contents'])
|
||||||
|
|
||||||
|
for renderer in renderers:
|
||||||
|
vid = try_get(renderer, lambda x: x['richItemRenderer']['content']['videoRenderer'])
|
||||||
|
if vid is not None:
|
||||||
|
videos.append(vid)
|
||||||
|
continue
|
||||||
|
|
||||||
|
if 'richSectionRenderer' in renderer:
|
||||||
|
vids = try_get(renderer, lambda x: x['richSectionRenderer']['content']['richShelfRenderer']['contents'])
|
||||||
|
for v in vids:
|
||||||
|
vid = try_get(v, lambda x: x['richItemRenderer']['content']['videoRenderer'])
|
||||||
|
if vid is not None:
|
||||||
|
videos.append(vid)
|
||||||
|
continue
|
||||||
|
|
||||||
|
if 'continuationItemRenderer' in renderer:
|
||||||
|
continuation_renderer = renderer
|
||||||
|
|
||||||
|
return videos, continuation_renderer
|
||||||
|
|
||||||
class YoutubeSubscriptionsIE(YoutubeFeedsInfoExtractor):
|
class YoutubeSubscriptionsIE(YoutubeFeedsInfoExtractor):
|
||||||
IE_DESC = 'YouTube.com subscriptions feed, "ytsubs" keyword (requires authentication)'
|
IE_DESC = 'YouTube.com subscriptions feed, "ytsubs" keyword (requires authentication)'
|
||||||
@ -3379,6 +3414,23 @@ class YoutubeSubscriptionsIE(YoutubeFeedsInfoExtractor):
|
|||||||
_FEED_NAME = 'subscriptions'
|
_FEED_NAME = 'subscriptions'
|
||||||
_PLAYLIST_TITLE = 'Youtube Subscriptions'
|
_PLAYLIST_TITLE = 'Youtube Subscriptions'
|
||||||
|
|
||||||
|
def _extract_video_info(self, initial_data):
|
||||||
|
videos = []
|
||||||
|
continuation_renderer = None
|
||||||
|
|
||||||
|
renderers = try_get(
|
||||||
|
initial_data,
|
||||||
|
lambda x: x['contents']['twoColumnBrowseResultsRenderer']['tabs'][0]['tabRenderer']['content']['sectionListRenderer']['contents'])
|
||||||
|
for renderer in renderers:
|
||||||
|
for item in try_get(renderer, lambda x: x['itemSectionRenderer']['contents'][0]['shelfRenderer']['content']['gridRenderer']['items']):
|
||||||
|
vid = try_get(item, lambda x: x['gridVideoRenderer'])
|
||||||
|
if vid is not None:
|
||||||
|
videos.append(vid)
|
||||||
|
|
||||||
|
if 'continuationItemRenderer' in renderer:
|
||||||
|
continuation_renderer = renderer
|
||||||
|
|
||||||
|
return videos, continuation_renderer
|
||||||
|
|
||||||
class YoutubeHistoryIE(YoutubeFeedsInfoExtractor):
|
class YoutubeHistoryIE(YoutubeFeedsInfoExtractor):
|
||||||
IE_DESC = 'Youtube watch history, ":ythistory" for short (requires authentication)'
|
IE_DESC = 'Youtube watch history, ":ythistory" for short (requires authentication)'
|
||||||
@ -3386,6 +3438,22 @@ class YoutubeHistoryIE(YoutubeFeedsInfoExtractor):
|
|||||||
_FEED_NAME = 'history'
|
_FEED_NAME = 'history'
|
||||||
_PLAYLIST_TITLE = 'Youtube History'
|
_PLAYLIST_TITLE = 'Youtube History'
|
||||||
|
|
||||||
|
def _extract_video_info(self, initial_data):
|
||||||
|
videos = []
|
||||||
|
continuation_renderer = None
|
||||||
|
|
||||||
|
renderers = try_get(
|
||||||
|
initial_data,
|
||||||
|
lambda x: x['contents']['twoColumnBrowseResultsRenderer']['tabs'][0]['tabRenderer']['content']['sectionListRenderer']['contents'])
|
||||||
|
for renderer in renderers:
|
||||||
|
vid = try_get(renderer, lambda x: x['itemSectionRenderer']['contents'][0]['videoRenderer'])
|
||||||
|
if vid is not None:
|
||||||
|
videos.append(vid)
|
||||||
|
|
||||||
|
if 'continuationItemRenderer' in renderer:
|
||||||
|
continuation_renderer = renderer
|
||||||
|
|
||||||
|
return videos, continuation_renderer
|
||||||
|
|
||||||
class YoutubeTruncatedURLIE(InfoExtractor):
|
class YoutubeTruncatedURLIE(InfoExtractor):
|
||||||
IE_NAME = 'youtube:truncated_url'
|
IE_NAME = 'youtube:truncated_url'
|
||||||
|
Loading…
Reference in New Issue
Block a user