[youtube] Show if video is embeddable in info

Closes https://github.com/ytdl-org/youtube-dl/issues/27730
pull/12/head
pukkandan 3 years ago
parent 4084f235eb
commit 5ac2324460

@ -1817,6 +1817,9 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
if not isinstance(video_info, dict):
video_info = {}
playable_in_embed = try_get(
player_response, lambda x: x['playabilityStatus']['playableInEmbed'])
video_details = try_get(
player_response, lambda x: x['videoDetails'], dict) or {}
@ -2538,6 +2541,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
'release_date': release_date,
'release_year': release_year,
'subscriber_count': subscriber_count,
'playable_in_embed': playable_in_embed,
}

Loading…
Cancel
Save