mirror of https://github.com/yt-dlp/yt-dlp.git
[documentation] Add `SplitChapters` to `--ppa`
This commit is contained in:
parent
a94bfd6cfe
commit
dd18a58cb1
26
README.md
26
README.md
|
@ -641,19 +641,19 @@ Then simply run `make`. You can also run `make yt-dlp` instead to compile only t
|
||||||
ExtractAudio, VideoRemuxer, VideoConvertor,
|
ExtractAudio, VideoRemuxer, VideoConvertor,
|
||||||
EmbedSubtitle, Metadata, Merger,
|
EmbedSubtitle, Metadata, Merger,
|
||||||
FixupStretched, FixupM4a, FixupM3u8,
|
FixupStretched, FixupM4a, FixupM3u8,
|
||||||
SubtitlesConvertor and EmbedThumbnail. The
|
SubtitlesConvertor, EmbedThumbnail and
|
||||||
supported executables are: SponSkrub,
|
SplitChapters. The supported executables
|
||||||
FFmpeg, FFprobe, and AtomicParsley. You can
|
are: SponSkrub, FFmpeg, FFprobe, and
|
||||||
also specify "PP+EXE:ARGS" to give the
|
AtomicParsley. You can also specify
|
||||||
arguments to the specified executable only
|
"PP+EXE:ARGS" to give the arguments to the
|
||||||
when being used by the specified
|
specified executable only when being used
|
||||||
postprocessor. Additionally, for
|
by the specified postprocessor.
|
||||||
ffmpeg/ffprobe, "_i"/"_o" can be appended
|
Additionally, for ffmpeg/ffprobe, "_i"/"_o"
|
||||||
to the prefix optionally followed by a
|
can be appended to the prefix optionally
|
||||||
number to pass the argument before the
|
followed by a number to pass the argument
|
||||||
specified input/output file. Eg: --ppa
|
before the specified input/output file. Eg:
|
||||||
"Merger+ffmpeg_i1:-v quiet". You can use
|
--ppa "Merger+ffmpeg_i1:-v quiet". You can
|
||||||
this option multiple times to give
|
use this option multiple times to give
|
||||||
different arguments to different
|
different arguments to different
|
||||||
postprocessors. (Alias: --ppa)
|
postprocessors. (Alias: --ppa)
|
||||||
-k, --keep-video Keep the intermediate video file on disk
|
-k, --keep-video Keep the intermediate video file on disk
|
||||||
|
|
|
@ -1090,7 +1090,7 @@ def parseOpts(overrideArguments=None):
|
||||||
'Specify the postprocessor/executable name and the arguments separated by a colon ":" '
|
'Specify the postprocessor/executable name and the arguments separated by a colon ":" '
|
||||||
'to give the argument to the specified postprocessor/executable. Supported postprocessors are: '
|
'to give the argument to the specified postprocessor/executable. Supported postprocessors are: '
|
||||||
'SponSkrub, ExtractAudio, VideoRemuxer, VideoConvertor, EmbedSubtitle, Metadata, Merger, '
|
'SponSkrub, ExtractAudio, VideoRemuxer, VideoConvertor, EmbedSubtitle, Metadata, Merger, '
|
||||||
'FixupStretched, FixupM4a, FixupM3u8, SubtitlesConvertor and EmbedThumbnail. '
|
'FixupStretched, FixupM4a, FixupM3u8, SubtitlesConvertor, EmbedThumbnail and SplitChapters. '
|
||||||
'The supported executables are: SponSkrub, FFmpeg, FFprobe, and AtomicParsley. '
|
'The supported executables are: SponSkrub, FFmpeg, FFprobe, and AtomicParsley. '
|
||||||
'You can also specify "PP+EXE:ARGS" to give the arguments to the specified executable '
|
'You can also specify "PP+EXE:ARGS" to give the arguments to the specified executable '
|
||||||
'only when being used by the specified postprocessor. Additionally, for ffmpeg/ffprobe, '
|
'only when being used by the specified postprocessor. Additionally, for ffmpeg/ffprobe, '
|
||||||
|
|
Loading…
Reference in New Issue