diff options
author | Sergey M․ <dstftw@gmail.com> | 2018-04-08 00:29:43 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2018-04-08 00:29:43 +0700 |
commit | 717ea4e14e59bded0c2fb20e84b6513d82644b43 (patch) | |
tree | c904e6a4441539425e75131123def952f90a279c | |
parent | cae5d9705c28ffc0bf5e149a5f92d31a48208e49 (diff) |
[steam] Bypass mature content check (closes #16113)
-rw-r--r-- | youtube_dl/extractor/steam.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/youtube_dl/extractor/steam.py b/youtube_dl/extractor/steam.py index e5ac586a7..a6a191ceb 100644 --- a/youtube_dl/extractor/steam.py +++ b/youtube_dl/extractor/steam.py @@ -75,6 +75,9 @@ class SteamIE(InfoExtractor): gameID = m.group('gameID') playlist_id = gameID videourl = self._VIDEO_PAGE_TEMPLATE % playlist_id + + self._set_cookie('steampowered.com', 'mature_content', '1') + webpage = self._download_webpage(videourl, playlist_id) if re.search('<h2>Please enter your birth date to continue:</h2>', webpage) is not None: |