mirror of
https://github.com/yt-dlp/yt-dlp
synced 2024-11-18 10:05:58 +01:00
[youtube] Fix controversial videos when requested via API (#533)
Closes: https://github.com/yt-dlp/yt-dlp/issues/511#issuecomment-883024350 Authored by: colethedj
This commit is contained in:
parent
d61fc64618
commit
a1a7907bc0
1 changed files with 15 additions and 16 deletions
|
@ -1074,21 +1074,6 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
|
||||||
'format': '141/bestaudio[ext=m4a]',
|
'format': '141/bestaudio[ext=m4a]',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
# Controversy video
|
|
||||||
{
|
|
||||||
'url': 'https://www.youtube.com/watch?v=T4XJQO3qol8',
|
|
||||||
'info_dict': {
|
|
||||||
'id': 'T4XJQO3qol8',
|
|
||||||
'ext': 'mp4',
|
|
||||||
'duration': 219,
|
|
||||||
'upload_date': '20100909',
|
|
||||||
'uploader': 'Amazing Atheist',
|
|
||||||
'uploader_id': 'TheAmazingAtheist',
|
|
||||||
'uploader_url': r're:https?://(?:www\.)?youtube\.com/user/TheAmazingAtheist',
|
|
||||||
'title': 'Burning Everyone\'s Koran',
|
|
||||||
'description': 'SUBSCRIBE: http://www.youtube.com/saturninefilms \r\n\r\nEven Obama has taken a stand against freedom on this issue: http://www.huffingtonpost.com/2010/09/09/obama-gma-interview-quran_n_710282.html',
|
|
||||||
}
|
|
||||||
},
|
|
||||||
# Normal age-gate video (embed allowed)
|
# Normal age-gate video (embed allowed)
|
||||||
{
|
{
|
||||||
'url': 'https://youtube.com/watch?v=HtVdAasjOgU',
|
'url': 'https://youtube.com/watch?v=HtVdAasjOgU',
|
||||||
|
@ -1621,6 +1606,19 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
|
||||||
'url': 'https://www.youtube.com/watch?v=nGC3D_FkCmg',
|
'url': 'https://www.youtube.com/watch?v=nGC3D_FkCmg',
|
||||||
'only_matching': True,
|
'only_matching': True,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
# controversial video, requires bpctr/contentCheckOk
|
||||||
|
'url': 'https://www.youtube.com/watch?v=SZJvDhaSDnc',
|
||||||
|
'info_dict': {
|
||||||
|
'id': 'SZJvDhaSDnc',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': 'San Diego teen commits suicide after bullying over embarrassing video',
|
||||||
|
'channel_id': 'UC-SJ6nODDmufqBzPBwCvYvQ',
|
||||||
|
'uploader': 'CBS This Morning',
|
||||||
|
'upload_date': '20140716',
|
||||||
|
'description': 'md5:acde3a73d3f133fc97e837a9f76b53b7'
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
# restricted location, https://github.com/ytdl-org/youtube-dl/issues/28685
|
# restricted location, https://github.com/ytdl-org/youtube-dl/issues/28685
|
||||||
'url': 'cBvYw8_A0vQ',
|
'url': 'cBvYw8_A0vQ',
|
||||||
|
@ -2265,7 +2263,8 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
|
||||||
return {
|
return {
|
||||||
'playbackContext': {
|
'playbackContext': {
|
||||||
'contentPlaybackContext': context
|
'contentPlaybackContext': context
|
||||||
}
|
},
|
||||||
|
'contentCheckOk': True
|
||||||
}
|
}
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
|
|
Loading…
Reference in a new issue