mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-03 23:07:07 -05:00 
			
		
		
		
	[extractor/common] improve dash format ids
This commit is contained in:
		@@ -1443,7 +1443,7 @@ class InfoExtractor(object):
 | 
			
		||||
                        url_el = representation.find(_add_ns('BaseURL'))
 | 
			
		||||
                        filesize = int_or_none(url_el.attrib.get('{http://youtube.com/yt/2012/10/10}contentLength') if url_el is not None else None)
 | 
			
		||||
                        f = {
 | 
			
		||||
                            'format_id': mpd_id or representation_id,
 | 
			
		||||
                            'format_id': '%s-%s' % (mpd_id, representation_id) if mpd_id else representation_id,
 | 
			
		||||
                            'url': base_url,
 | 
			
		||||
                            'width': int_or_none(representation_attrib.get('width')),
 | 
			
		||||
                            'height': int_or_none(representation_attrib.get('height')),
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user