Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions src/streamlink_cli/argparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -1106,7 +1106,9 @@ def build_parser():
type=str,
metavar="OUTFORMAT",
help="""
Set output file format.
When muxing streams, set the output format to OUTFORMAT.

Default is "matroska".

Example: "mpegts"
"""
Expand All @@ -1115,7 +1117,7 @@ def build_parser():
"--ffmpeg-video-transcode",
metavar="CODEC",
help="""
When muxing streams transcode the video to this CODEC.
When muxing streams, transcode the video to CODEC.

Default is "copy".

Expand All @@ -1126,7 +1128,7 @@ def build_parser():
"--ffmpeg-audio-transcode",
metavar="CODEC",
help="""
When muxing streams transcode the audio to this CODEC.
When muxing streams, transcode the audio to CODEC.

Default is "copy".

Expand Down