mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	Allow passing different arguments to different postprocessors
* Also deprecated --sponskrub-args Closes: https://github.com/ytdl-org/youtube-dl/issues/27593 Eg: `--postprocessor-args "VideoConvertor:-c:v h264_nvenc -preset slow"` Eg: `--postprocessor-args "SponsKrub:-include-selfpromo"` For backward compatibility, `--postprocessor-args args` is equivalent to: `--post-processor-args "sponskrub:" --post-processor-args "default:args"`
This commit is contained in:
		| @@ -333,8 +333,9 @@ class YoutubeDL(object): | ||||
|                        otherwise prefer ffmpeg. | ||||
|     ffmpeg_location:   Location of the ffmpeg/avconv binary; either the path | ||||
|                        to the binary or its containing directory. | ||||
|     postprocessor_args: A list of additional command-line arguments for the | ||||
|                         postprocessor. | ||||
|     postprocessor_args: A dictionary of postprocessor names (in lower case) and a list | ||||
|                         of additional command-line arguments for the postprocessor. | ||||
|                         Use 'default' as the name for arguments to passed to all PP. | ||||
|  | ||||
|     The following options are used by the Youtube extractor: | ||||
|     youtube_include_dash_manifest: If True (default), DASH manifests and related | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 pukkandan
					pukkandan