Sfoglia il codice sorgente

[youtube] Fix age gate content detection (#26100) (closes #26152, closes #26311, closes #26384)

tags/2020.09.06
random-nick GitHub 3 anni fa
parent
commit
16ee69c1b7
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: 4AEE18F83AFDEB23
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  1. +2
    -1
      youtube_dl/extractor/youtube.py

+ 2
- 1
youtube_dl/extractor/youtube.py Vedi File

@@ -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


Loading…
Annulla
Salva