fix: Use the same bitrate as the dashboard by default

This commit is contained in:
LoicBersier 2025-07-31 19:33:16 +02:00
parent 3bcd5bdd32
commit 2c5db4117b

View file

@ -46,7 +46,7 @@ struct Args {
#[arg(default_value = "./output")]
output: String,
/// Bitrate for the output
#[arg(short, long, default_value_t = 192)]
#[arg(short, long, default_value_t = 128)]
bitrate: i16,
}