Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Ralf
youtube-dl
Commits
16ee69c1
Unverified
Commit
16ee69c1
authored
Sep 06, 2020
by
random-nick
Committed by
GitHub
Sep 06, 2020
Browse files
[youtube] Fix age gate content detection (#26100) (closes #26152, closes #26311, closes #26384)
parent
67171ed7
Changes
1
Hide whitespace changes
Inline
Side-by-side
youtube_dl/extractor/youtube.py
View file @
16ee69c1
...
...
@@ -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
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment