caesura 0.29.0

An all-in-one command line tool to transcode FLAC audio files and upload to gazelle based indexers/trackers
Documentation
use crate::prelude::*;

/// Information needed to resample a FLAC.
pub(crate) struct Resample {
    /// Path to the input file
    pub input: PathBuf,
    /// Path to the output file
    pub output: PathBuf,
    /// Resample rate
    pub resample_rate: u32,
    /// Use repeatable mode for `SoX` (deterministic dithering)
    pub repeatable: bool,
    /// Factory for creating sox commands
    pub sox: Ref<SoxFactory>,
}

impl Resample {
    /// Create a new resample command.
    #[must_use]
    #[allow(clippy::wrong_self_convention)]
    pub(crate) fn to_info(self) -> CommandInfo {
        let mut info = self.sox.create();
        if self.repeatable {
            info.args.push("-R".to_owned());
        }
        info.args.extend([
            self.input.to_string_lossy().to_string(),
            "-G".to_owned(),
            "-b".to_owned(),
            "16".to_owned(),
            self.output.to_string_lossy().to_string(),
            "rate".to_owned(),
            "-v".to_owned(),
            "-L".to_owned(),
            self.resample_rate.to_string(),
            "dither".to_owned(),
        ]);
        info
    }
}