Skip to content

Commit

Permalink
[youtube] Fix age gate content detection (#26100) (closes #26152, closes
Browse files Browse the repository at this point in the history
 #26311, closes #26384)
  • Loading branch information
random-nick authored Sep 6, 2020
1 parent 67171ed commit 16ee69c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion youtube_dl/extractor/youtube.py
Original file line number Diff line number Diff line change
Expand Up @@ -1825,7 +1825,8 @@ def extract_player_response(player_response, video_id):
# 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
Expand Down

0 comments on commit 16ee69c

Please sign in to comment.