omniparse 0.4.1

A Rust toolkit for detecting and extracting metadata, text, and content from various file formats
Documentation
1
2
3
4
5
6
7
//! Audio format parsers.

#[cfg(feature = "mp3")]
mod mp3;

#[cfg(feature = "mp3")]
pub use mp3::Mp3Parser;