Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ddiakopoulos/libnyquist
:microphone: Cross platform C++11 library for decoding audio (mp3, wav, ogg, opus, flac, etc)
https://github.com/ddiakopoulos/libnyquist
audio audio-engine audio-library cpp11 flac gamedev mp3 ogg opus sound-processing wav
Last synced: 9 days ago
JSON representation
:microphone: Cross platform C++11 library for decoding audio (mp3, wav, ogg, opus, flac, etc)
- Host: GitHub
- URL: https://github.com/ddiakopoulos/libnyquist
- Owner: ddiakopoulos
- License: bsd-2-clause
- Created: 2015-03-22T22:15:11.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-02-13T07:54:28.000Z (over 1 year ago)
- Last Synced: 2024-10-13T16:41:08.869Z (26 days ago)
- Topics: audio, audio-engine, audio-library, cpp11, flac, gamedev, mp3, ogg, opus, sound-processing, wav
- Language: C++
- Homepage:
- Size: 32.9 MB
- Stars: 537
- Watchers: 24
- Forks: 65
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
- AwesomeCppGameDev - libnyquist
README
# Libnyquist
Platform | Build Status |
-------- | ------------ |
Microsoft VS2017 x64 | [![Build status](https://ci.appveyor.com/api/projects/status/2xeuyuxy618ndf4r?svg=true)](https://ci.appveyor.com/project/ddiakopoulos/libnyquist) |
Clang (OSX) & GCC (Linux) | [![Build Status](https://travis-ci.org/ddiakopoulos/libnyquist.svg?branch=master)](https://travis-ci.org/ddiakopoulos/libnyquist) |Libnyquist is a small C++11 library for reading sampled audio data from disk or memory. It is intended to be used an audio loading frontend for games, audio sequencers, music players, and more.
The library does not include patent or license encumbered formats (such as AAC). For portability, libnyquist does not link against platform-specific APIs like Windows Media Foundation or CoreAudio, and instead bundles the source code of reference decoders as an implementation detail.
Libnyquist is meant to be statically linked, which is not the case with other popular libraries like libsndfile (which is licensed under the LGPL). Furthermore, the library is not concerned with supporting very rare encodings (for instance, A-law PCM or the SND format).
While untested, there are no technical conditions that preclude compilation on other platforms with C++11 support (Android NDK r10e+, Linux, iOS, etc).## Format Support
Regardless of input bit depth, the library produces a channel-interleaved float vector, normalized between [-1.0,+1.0]. At present, the library does not provide comprehensive resampling functionality.
* Wave (+ IMA-ADPCM encoding)
* MP3
* Ogg Vorbis
* Ogg Opus
* FLAC
* WavPack
* Musepack## Known Issues & Bugs
* See the Github issue tracker.## License
This library is released under the simplied 2 clause BSD license. All included dependencies have been released under identical or similarly permissive licenses.