[youtube] More general title extraction

Seems like this attribute is moved every few weeks, so we just extract both and use the one that is present.
This commit is contained in:
xarantolus 2020-08-24 14:30:08 +02:00
parent 1f93faf60b
commit f442082a50
1 changed files with 1 additions and 1 deletions

View File

@ -3383,7 +3383,7 @@ class YoutubeFeedsInfoExtractor(YoutubeBaseInfoExtractor):
info.extend(new_info)
for video in new_info:
yield self.url_result(try_get(video, lambda x: x['videoId']), YoutubeIE.ie_key(), video_title=try_get(video, lambda x: x['title']['runs'][0]['text']))
yield self.url_result(try_get(video, lambda x: x['videoId']), YoutubeIE.ie_key(), video_title=try_get(video, lambda x: x['title']['runs'][0]['text']) or try_get(video, lambda x: x['title']['simpleText']))
if not continuation or not yt_conf:
break