Skip to content

Commit

Permalink
Merge pull request ytdl-org#13 from random-nick/master
Browse files Browse the repository at this point in the history
[youtube] Fix age gate detection
  • Loading branch information
blackjack4494 authored Aug 31, 2020
2 parents a9c0690 + cae18ef commit 90b7b5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion youtube_dl/extractor/youtube.py
Original file line number Diff line number Diff line change
Expand Up @@ -1836,7 +1836,7 @@ 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._html_search_meta('og:restrictions:age', video_webpage, default=None) == "18+":
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 90b7b5e

Please sign in to comment.