[READ-ONLY] Mirror of https://github.com/probablykasper/redlux. AAC decoder for MPEG-4 and AAC files, with rodio support
aac audio decoder mp4 package
0

Configure Feed

Select the types of activity you want to include in your feed.

Update description

Kasper (Feb 2, 2021, 5:10 AM +0100) 59f89c10 2d6a83f6

+5 -3
+1 -1
Cargo.toml
··· 1 1 [package] 2 2 name = "redlux" 3 3 version = "0.2.0" 4 - description = "AAC decoder for MPEG-4 (MP4, M4A etc) and AAC files" 4 + description = "AAC decoder for MPEG-4 (MP4, M4A etc) and AAC files, with rodio support" 5 5 authors = ["Kasper Henningsen"] 6 6 edition = "2018" 7 7 readme = "README.md"
+4 -2
README.md
··· 1 1 # redlux 2 2 3 - AAC decoder for MPEG-4 (MP4, M4A etc) and AAC files. Supports rodio. 4 - 5 3 [![Crates.io](https://img.shields.io/crates/v/redlux.svg)](https://crates.io/crates/redlux) 6 4 [![Documentation](https://docs.rs/redlux/badge.svg)](https://docs.rs/redlux) 5 + 6 + AAC decoder for MPEG-4 (MP4, M4A etc) and AAC files, with rodio support 7 + 8 + Reads MPEG-4 containers using [rust-mp4](https://crates.io/crates/mp4), and then constructs ADTS headers for it. Decodes AAC to PCM using [fdk-aac c-bindings](https://crates.io/crates/fdk-aac). Check the examples for usage with [rodio](https://crates.io/crates/rodio). 7 9 8 10 ## Caveats 9 11 1. It only decodes the first AAC track it finds in an MPEG-4 container.