1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-03 14:41:04 +02:00

[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

View File

@ -3383,7 +3383,7 @@ def _entries(self, page):
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