An open API service indexing awesome lists of open source software.

https://github.com/chrontax/audyo

Audio decode/encode library for rust
https://github.com/chrontax/audyo

Last synced: 5 months ago
JSON representation

Audio decode/encode library for rust

Awesome Lists containing this project

README

          

# Audyo

Audio decoding/encoding library with a simple api.

## Features

- audio decoding (currently supports all formats supported by [symphonia](https://crates.io/crates/symphonia))
- audio encoding (currently only supports ogg vorbis)

## Usage

```none
cargo add audyo
```

```rust
let decoded = audyo::decode::(File::open("uwu.mp3").unwrap()).unwrap();

let vorbis_encoded = audyo::encode_vorbis(&decoded.1, 320000).unwrap();
```