https://github.com/savonet/ocaml-faad
OCaml bindings for the libfaad AAC decoder library.
https://github.com/savonet/ocaml-faad
aac decoder faad ocaml
Last synced: about 2 months ago
JSON representation
OCaml bindings for the libfaad AAC decoder library.
- Host: GitHub
- URL: https://github.com/savonet/ocaml-faad
- Owner: savonet
- License: gpl-2.0
- Created: 2012-10-01T12:28:46.000Z (over 13 years ago)
- Default Branch: main
- Last Pushed: 2022-05-22T22:37:48.000Z (about 4 years ago)
- Last Synced: 2025-12-30T16:04:09.259Z (6 months ago)
- Topics: aac, decoder, faad, ocaml
- Language: C
- Homepage:
- Size: 143 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES
- License: COPYING
Awesome Lists containing this project
README
# ocaml-faad
This package contains an O'Caml interface for the AAC audio decoder, otherwise known as libfaad.
Please read the COPYING file before using this software.
## Prerequisites:
- ocaml >= 3.0.6 (haven't tried earlier versions)
- libfaad >= 2.5 (haven't tried earlier versions)
- findlib >= 0.8.1 (haven't tried earlier versions)
- dune >= 2.0
## Compilation:
```sh
$ dune build
```
This should build both the native and the byte-code version of the
extension library.
## Installation:
Via `opam`:
```sh
$ opam install faad
```
Via `dune` (for developers):
```sh
$ dune install
```
This should install the library file (using ocamlfind) in the
appropriate place.