Compare commits

..

No commits in common. "2c5db4117bfec3f2481de4e7dabcdf5a679b82b4" and "21802286a527b6ff2b9ea2617b8ca78ed5a6c5d2" have entirely different histories.

View file

@ -27,7 +27,7 @@ enum Errors {
FromUtf8(#[from] FromUtf8Error), FromUtf8(#[from] FromUtf8Error),
#[error("Skill issue on the programmer part ngl, report this to dev pls")] #[error("Skill issue on the programmer part ngl, report this to dev pls")]
SkillIssue(), SkillIssue(),
#[error("Didn't find any file to convert, is your input folder structured correctly?")] #[error("Didn't find any file to convert, is your input folder structued correctly?")]
NoFileToConvert(), NoFileToConvert(),
#[error("You are missing ffprobe in your PATH")] #[error("You are missing ffprobe in your PATH")]
@ -46,7 +46,7 @@ struct Args {
#[arg(default_value = "./output")] #[arg(default_value = "./output")]
output: String, output: String,
/// Bitrate for the output /// Bitrate for the output
#[arg(short, long, default_value_t = 128)] #[arg(short, long, default_value_t = 192)]
bitrate: i16, bitrate: i16,
} }