Compare commits

...

2 commits

Author SHA1 Message Date
2c5db4117b fix: Use the same bitrate as the dashboard by default 2025-07-31 19:33:16 +02:00
3bcd5bdd32 fix: correct typo 2025-07-31 19:26:36 +02:00

View file

@ -27,7 +27,7 @@ enum Errors {
FromUtf8(#[from] FromUtf8Error),
#[error("Skill issue on the programmer part ngl, report this to dev pls")]
SkillIssue(),
#[error("Didn't find any file to convert, is your input folder structued correctly?")]
#[error("Didn't find any file to convert, is your input folder structured correctly?")]
NoFileToConvert(),
#[error("You are missing ffprobe in your PATH")]
@ -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,
}