mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 15:14:57 +00:00
[youtube] Fix bug (Closes https://github.com/pukkandan/yt-dlc/issues/10)
This commit is contained in:
parent
e8273c86a3
commit
62d80ba17c
1 changed files with 3 additions and 2 deletions
|
@ -1686,11 +1686,12 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
|
||||||
if embedded_config:
|
if embedded_config:
|
||||||
return embedded_config
|
return embedded_config
|
||||||
|
|
||||||
|
video_info = {}
|
||||||
player_response = {}
|
player_response = {}
|
||||||
|
ytplayer_config = None
|
||||||
|
embed_webpage = None
|
||||||
|
|
||||||
# Get video info
|
# Get video info
|
||||||
video_info = {}
|
|
||||||
embed_webpage = None
|
|
||||||
if (self._og_search_property('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):
|
or re.search(r'player-age-gate-content">', video_webpage) is not None):
|
||||||
cookie_keys = self._get_cookies('https://www.youtube.com').keys()
|
cookie_keys = self._get_cookies('https://www.youtube.com').keys()
|
||||||
|
|
Loading…
Reference in a new issue