mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	| @@ -548,7 +548,7 @@ class YoutubeDL: | ||||
|         # NB: Keep in sync with the docstring of extractor/common.py | ||||
|         'url', 'manifest_url', 'manifest_stream_number', 'ext', 'format', 'format_id', 'format_note', | ||||
|         'width', 'height', 'resolution', 'dynamic_range', 'tbr', 'abr', 'acodec', 'asr', 'audio_channels', | ||||
|         'vbr', 'fps', 'vcodec', 'container', 'filesize', 'filesize_approx', | ||||
|         'vbr', 'fps', 'vcodec', 'container', 'filesize', 'filesize_approx', 'rows', 'columns', | ||||
|         'player_url', 'protocol', 'fragment_base_url', 'fragments', 'is_from_start', | ||||
|         'preference', 'language', 'language_preference', 'quality', 'source_preference', | ||||
|         'http_headers', 'stretched_ratio', 'no_resume', 'has_drm', 'downloader_options', | ||||
| @@ -3586,7 +3586,7 @@ class YoutubeDL: | ||||
|                     format_field(f, 'ext'), | ||||
|                     self.format_resolution(f), | ||||
|                     self._format_note(f) | ||||
|                 ] for f in formats if f.get('preference') is None or f['preference'] >= -1000] | ||||
|                 ] for f in formats if (f.get('preference') or 0) >= -1000] | ||||
|             return render_table(['format code', 'extension', 'resolution', 'note'], table, extra_gap=1) | ||||
| 
 | ||||
|         def simplified_codec(f, field): | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 pukkandan
					pukkandan