mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-03 23:07:07 -05:00 
			
		
		
		
	[downloader/dash] Honor HTTP headers when downloading fragments
For example, https://www.oppetarkiv.se/video/1196142/natten-ar-dagens-mor
This commit is contained in:
		@@ -43,7 +43,10 @@ class DashSegmentsFD(FragmentFD):
 | 
			
		||||
            count = 0
 | 
			
		||||
            while count <= fragment_retries:
 | 
			
		||||
                try:
 | 
			
		||||
                    success = ctx['dl'].download(target_filename, {'url': segment_url})
 | 
			
		||||
                    success = ctx['dl'].download(target_filename, {
 | 
			
		||||
                        'url': segment_url,
 | 
			
		||||
                        'http_headers': info_dict.get('http_headers'),
 | 
			
		||||
                    })
 | 
			
		||||
                    if not success:
 | 
			
		||||
                        return False
 | 
			
		||||
                    down, target_sanitized = sanitize_open(target_filename, 'rb')
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user