[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.
pull/8/head
xarantolus 2020-08-24 14:30:08 +02:00
rodzic 1f93faf60b
commit f442082a50
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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