1
0
mirror of https://github.com/l1ving/youtube-dl synced 2026-06-06 23:33:39 +08:00

Update youtube.py

This commit is contained in:
Sergey M
2020-09-06 11:39:33 +07:00
committed by GitHub
Unverified
parent cae18ef8f2
commit 82128d2332
+2 -1
View File
@@ -1825,7 +1825,8 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
# Get video info
video_info = {}
embed_webpage = None
if self._html_search_meta('og:restrictions:age', video_webpage, default=None) == "18+":
if (self._og_search_property('restrictions:age', video_webpage, default=None) == '18+'
or re.search(r'player-age-gate-content">', video_webpage) is not None):
age_gate = True
# We simulate the access to the video from www.youtube.com/v/{video_id}
# this can be viewed without login into Youtube