caesura 0.29.0

An all-in-one command line tool to transcode FLAC audio files and upload to gazelle based indexers/trackers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Audio format types and conversion utilities.

pub(crate) use edition_key::*;
pub(crate) use existing_format::*;
pub(crate) use existing_format_provider::*;
pub(crate) use source_format::*;
pub(crate) use target_format::*;
pub(crate) use target_format_provider::*;

mod edition_key;
mod existing_format;
mod existing_format_provider;
mod source_format;
mod target_format;
mod target_format_provider;
#[cfg(test)]
mod tests;