summary refs log tree commit diff
diff options
context:
space:
mode:
authorrandom-nick <random-nick@email.com>2020-09-06 04:44:53 +0000
committerGitHub <noreply@github.com>2020-09-06 11:44:53 +0700
commit16ee69c1b7d9877c852d50428d8f047ada45d539 (patch)
treee5b76a0d10f8f04349b47478e8da8d548d26fe71
parent67171ed7e940d9022e3388ddd029978bc426ea1f (diff)
downloadyoutube-dl-16ee69c1b7d9877c852d50428d8f047ada45d539.tar.gz
youtube-dl-16ee69c1b7d9877c852d50428d8f047ada45d539.tar.xz
youtube-dl-16ee69c1b7d9877c852d50428d8f047ada45d539.zip
[youtube] Fix age gate content detection (#26100) (closes #26152, closes #26311, closes #26384)
-rw-r--r--youtube_dl/extractor/youtube.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py
index 6611caf06..6ae2e58c1 100644
--- a/youtube_dl/extractor/youtube.py
+++ b/youtube_dl/extractor/youtube.py
@@ -1825,7 +1825,8 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
         # Get video info
         video_info = {}
         embed_webpage = None
-        if re.search(r'player-age-gate-content">', video_webpage) is not None:
+        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