vorbis_rs 0.5.5

Ogg Vorbis stream encoding and decoding powered by high-level bindings for best-in-breed C libraries
Documentation
1
2
3
4
5
6
7
8
9
10
#[macro_use]
mod error;
pub use error::{VorbisError, VorbisLibrary, VorbisLibraryError, VorbisLibraryErrorKind};

mod ogg;
pub use ogg::{OggPacket, OggStream};

mod vorbis;
// self:: must be used in order to clear up ambiguity
pub use self::vorbis::{VorbisComments, VorbisInfo};