Skip to content

zrythm/libaudec

Repository files navigation

libaudec

builds.sr.ht status

libaudec (lib audio decoder) is a wrapper library over minimp3, sndfile and libsamplerate for reading and resampling audio files, based on Robin Gareus' audio_decoder code (https://github.com/x42/silan/tree/master/audio_decoder)

libaudec supports all formats supported by sndfile, in addition to MP3.

This library is meant to be linked in statically to larger projects.

Until version 1.0 is released, the API is subject to change.

Usage

Use #include <audec/audec.h> in your C/C++ project and add a dependency to the library using the pkg-config name audec.

Example of loading a file into an interleaved float array at 44000Hz:

AudecInfo nfo;
AudecHandle * handle =
  audec_open (filename, &nfo);
if (!handle)
  {
    /* handle error */
  }
float * out_frames = NULL;
ssize_t samples_read =
  audec_read (
    handle, &out_frames, 44000);
if (samples_read < 0)
  {
    /* handle error */
  }
audec_close (handle);

See the header file for more info.

Building

To build only:

meson build
ninja -C build

Installation:

ninja -C build install

Patches/Issues

Send email to dev at zrythm.org or open an issue in https://redmine.zrythm.org/projects/libaudec/issues

License

libaudec is released under the GNU Affero GPLv3+. See the file COPYING for more details. Some files, where specified, are licensed under different licenses.


Copyright (C) 2019-2020 Alexandros Theodotou

Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. This file is offered as-is, without any warranty.

About

A library for reading and resampling audio files

Resources

License

AGPL-3.0, GPL-3.0 licenses found

Licenses found

AGPL-3.0
COPYING
GPL-3.0
COPYING.GPL3

Stars

Watchers

Forks