lofty 0.24.0

Audio metadata library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Generic audio properties
//!
//! Many audio formats have their own custom properties, but there are some properties that are
//! common to all audio formats. When using [`TaggedFile`](crate::file::TaggedFile), any custom properties
//! will simply be converted to [`FileProperties`].

mod channel_mask;
mod file_properties;

#[cfg(test)]
mod tests;

pub use channel_mask::ChannelMask;
pub use file_properties::FileProperties;