diff options
author | pukkandan <pukkandan@gmail.com> | 2021-01-08 00:58:41 +0530 |
---|---|---|
committer | pukkandan <pukkandan@gmail.com> | 2021-01-08 01:41:08 +0530 |
commit | 1b77b347d422ed70fd833a9f0327ea418ba4919c (patch) | |
tree | 35232d3f241acdc6ce794d37418e34adbcd37d8d /README.md | |
parent | 6c40e33c9e97bd32cece9b12e5e90ed66fa1fcb8 (diff) |
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"`
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -550,7 +550,18 @@ Then simply type this --recode-video FORMAT Re-encode the video into another format if re-encoding is necessary (currently supported: mp4|flv|ogg|webm|mkv|avi) - --postprocessor-args ARGS Give these arguments to the postprocessor + --postprocessor-args NAME:ARGS Give these arguments to the postprocessors. + Specify the postprocessor name and the + arguments separated by a colon ':' to give + the argument to only the specified + postprocessor. Supported names are + ExtractAudio, VideoRemuxer, VideoConvertor, + EmbedSubtitle, Metadata, Merger, + FixupStretched, FixupM4a, FixupM3u8, + SubtitlesConvertor, SponSkrub and Default. + You can use this option multiple times to + give different arguments to different + postprocessors -k, --keep-video Keep the intermediate video file on disk after post-processing --no-keep-video Delete the intermediate video file after |