mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	[youtube] Fix extraction of age gate videos (closes #3270)
Setting the correct value of the 'sts' paramater in the 'get_video_info' url gives the correct urls. Removed parameters that are not needed.
This commit is contained in:
		| @@ -609,14 +609,11 @@ class YoutubeIE(YoutubeBaseInfoExtractor, SubtitlesInfoExtractor): | ||||
|             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 | ||||
|             data = compat_urllib_parse.urlencode({'video_id': video_id, | ||||
|                                                   'el': 'player_embedded', | ||||
|                                                   'gl': 'US', | ||||
|                                                   'hl': 'en', | ||||
|                                                   'eurl': 'https://youtube.googleapis.com/v/' + video_id, | ||||
|                                                   'asv': 3, | ||||
|                                                   'sts':'1588', | ||||
|                                                   }) | ||||
|             data = compat_urllib_parse.urlencode({ | ||||
|                 'video_id': video_id, | ||||
|                 'eurl': 'https://youtube.googleapis.com/v/' + video_id, | ||||
|                 'sts':'16268', | ||||
|             }) | ||||
|             video_info_url = proto + '://www.youtube.com/get_video_info?' + data | ||||
|             video_info_webpage = self._download_webpage(video_info_url, video_id, | ||||
|                                     note=False, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Jaime Marquínez Ferrándiz
					Jaime Marquínez Ferrándiz