remata 0.1.0

A Rust library for reading metadata from various media file formats.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod aiff;
pub use aiff::AiffMeta;

mod id3;
pub use id3::Id3;

mod riff;
pub use riff::RiffMeta;

mod asf;
pub use asf::AsfMeta;

mod vob;
pub use vob::Vob;

mod atom;
pub use atom::AtomMeta;