#[cfg(target_os = "windows")]
pub const SOX: &str = "sox.exe";
#[cfg(not(target_os = "windows"))]
pub const SOX: &str = "sox";
#[cfg(target_os = "windows")]
pub const LAME: &str = "lame.exe";
#[cfg(not(target_os = "windows"))]
pub const LAME: &str = "lame";
#[cfg(target_os = "windows")]
pub const FLAC: &str = "flac.exe";
#[cfg(not(target_os = "windows"))]
pub const FLAC: &str = "flac";
#[cfg(target_os = "windows")]
pub const CONVERT: &str = "convert.exe";
#[cfg(not(target_os = "windows"))]
pub const CONVERT: &str = "convert";
#[cfg(target_os = "windows")]
pub const IMDL: &str = "imdl.exe";
#[cfg(not(target_os = "windows"))]
pub const IMDL: &str = "imdl";