mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 01:37:07 -05:00 
			
		
		
		
	[common] Use codec2ext for DASH formats (#8764)
This commit is contained in:
		@@ -29,6 +29,7 @@ from ..utils import (
 | 
			
		||||
    age_restricted,
 | 
			
		||||
    bug_reports_message,
 | 
			
		||||
    clean_html,
 | 
			
		||||
    codec2ext,
 | 
			
		||||
    compiled_regex_type,
 | 
			
		||||
    determine_ext,
 | 
			
		||||
    error_to_compat_str,
 | 
			
		||||
@@ -1471,6 +1472,7 @@ class InfoExtractor(object):
 | 
			
		||||
                        f = {
 | 
			
		||||
                            'format_id': '%s-%s' % (mpd_id, representation_id) if mpd_id else representation_id,
 | 
			
		||||
                            'url': base_url,
 | 
			
		||||
                            'ext': codec2ext(representation_attrib.get('codecs')),
 | 
			
		||||
                            'width': int_or_none(representation_attrib.get('width')),
 | 
			
		||||
                            'height': int_or_none(representation_attrib.get('height')),
 | 
			
		||||
                            'tbr': int_or_none(representation_attrib.get('bandwidth'), 1000),
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user