lofty/properties/
mod.rs

1//! Generic audio properties
2//!
3//! Many audio formats have their own custom properties, but there are some properties that are
4//! common to all audio formats. When using [`TaggedFile`](crate::file::TaggedFile), any custom properties
5//! will simply be converted to [`FileProperties`].
6
7mod channel_mask;
8mod file_properties;
9
10#[cfg(test)]
11mod tests;
12
13pub use channel_mask::ChannelMask;
14pub use file_properties::FileProperties;