mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 08:27:07 -05:00 
			
		
		
		
	[arte] Manually set the rtmp play_path (fix #3198)
rtmpdump doesn't parse it right
This commit is contained in:
		@@ -39,7 +39,10 @@ class ArteTvIE(InfoExtractor):
 | 
			
		||||
 | 
			
		||||
        formats = [{
 | 
			
		||||
            'forma_id': q.attrib['quality'],
 | 
			
		||||
            'url': q.text,
 | 
			
		||||
            # The playpath starts at 'mp4:', if we don't manually
 | 
			
		||||
            # split the url, rtmpdump will incorrectly parse them
 | 
			
		||||
            'url': q.text.split('mp4:', 1)[0],
 | 
			
		||||
            'play_path': 'mp4:' + q.text.split('mp4:', 1)[1],
 | 
			
		||||
            'ext': 'flv',
 | 
			
		||||
            'quality': 2 if q.attrib['quality'] == 'hd' else 1,
 | 
			
		||||
        } for q in config.findall('./urls/url')]
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user