Skip to content

Commit

Permalink
transcode-video: fix default audio bitrate
Browse files Browse the repository at this point in the history
  • Loading branch information
shellixyz committed Aug 18, 2023
1 parent f3c88e5 commit 66459fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion man_pages/hd_fpv_video_tool-transcode-video.1
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ audio encoder to use

This value is directly passed to the `\-c:a` FFMpeg argument.{n} Run `ffmpeg \-encoders` for a list of available encoders
.TP
\fB\-\-audio\-bitrate\fR=\fIAUDIO_BITRATE\fR [default: 25M]
\fB\-\-audio\-bitrate\fR=\fIAUDIO_BITRATE\fR [default: 93k]
max audio bitrate
.TP
\fB\-\-start\fR=\fI[HH:]MM:SS\fR
Expand Down
2 changes: 1 addition & 1 deletion src/cli/transcode_video_args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ pub struct TranscodeVideoArgs {
audio_encoder: String,

/// max audio bitrate
#[clap(long, value_parser, default_value = "25M")]
#[clap(long, value_parser, default_value = "93k")]
audio_bitrate: String,

#[clap(flatten)]
Expand Down

0 comments on commit 66459fb

Please sign in to comment.