Skip to content

Commit

Permalink
fmt, remove accidental change
Browse files Browse the repository at this point in the history
  • Loading branch information
russelltg committed Nov 10, 2024
1 parent 5c05f5f commit 0f08241
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/audio.rs
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ fn audio_filter(
.input("out", 0)
.unwrap()
.parse(&format!(
"aresample=async=1,aformat=sample_rates={}:sample_fmts={}:channel_layouts={:#x}",
"aformat=sample_rates={}:sample_fmts={}:channel_layouts={:#x}",
codec_sample_rate,
codec_sample_format.name(),
codec_channel_layout.bits(),
Expand Down
5 changes: 4 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,10 @@ pub struct Args {
)]
audio_codec: AudioCodec,

#[clap(long, help="audio bitrate to encode at. Unit is bytes per second, 16 kB is 128 kbps")]
#[clap(
long,
help = "audio bitrate to encode at. Unit is bytes per second, 16 kB is 128 kbps"
)]
audio_bitrate: Option<Size>,

#[clap(
Expand Down

0 comments on commit 0f08241

Please sign in to comment.