1## Ogg
2
3An Ogg decoder and encoder. Implements the [xiph.org Ogg spec](https://www.xiph.org/vorbis/doc/framing.html) in pure Rust.
4
5[Documentation](https://docs.rs/ogg/0.8.0).
6
7If the `async` feature is disabled, Version 1.27.0 of Rust is the minimum supported one.
8
9Note: `.ogg` files are vorbis encoded audio files embedded into an Ogg transport stream.
10There is no extra support for vorbis codec decoding or encoding in this crate,
11so you need additional functionality in order to decode them. For example, you can use the
12[lewton](https://github.com/RustAudio/lewton) crate.
13
14Also note that the encoder part of the Crate isn't as well tested as the decoder part,
15in fact it was only written in order to write compact testing code for the decoder.
16
17## License
18
19Licensed under the three clause BSD license. For details, see the [LICENSE](LICENSE) file.
20