You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Go to file
Dimitri Diakopoulos dcd2d1200f comment about the linear resample function 10 years ago
examples cleanup broken commit and enable testing with microphone to opus path 10 years ago
include/libnyquist comment about the linear resample function 10 years ago
libnyquist.vcxproj libmodplug fixes for windows; added to vs2015 solution 10 years ago
libnyquist.xcodeproj update xcode project for libmodplug support 10 years ago
src space normalization 10 years ago
test_data add support for non-timidity soundfonts (like Fluid R3) 10 years ago
third_party remove libmodplug extra detritus 10 years ago
.gitignore introduce vs 2015 example solution/proj file and fix paths. vs 2013 needs to be fixed 10 years ago
.travis.yml real appveyor config this time 10 years ago
COPYING update COPYING file for libmodplug 10 years ago
LICENSE add additional licences + format 11 years ago
README.md Update README.md 10 years ago
appveyor.yml update appveyor 10 years ago
midi-playback.md readme 10 years ago

README.md

Libnyquist

Build status

Libnyquist is a small C++11 library for reading sampled audio data from disk or memory. It's ideal to use as an audio asset frontend for games, audio sequencers, music players, and more.

The library steers away from patent or GPL license encumbered formats (such as MP3 and 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 hands over an interleaved float array, normalized between [-1.0,+1.0]. At present, the library does not provide resampling functionality.

  • Wave (+ IMA-ADPCM encoding)
  • Ogg Vorbis
  • Ogg Opus
  • FLAC
  • WavPack
  • Musepack
  • MIDI files (with soundfonts)
  • libmodplug formats (669, amf, ams, dbm, dmf, dsm, far, it, j2b, mdl, med, mod, mt2, mtm, okt, pat, psm, ptm, s3m, stm, ult, umx, xm)

Encoding

Simple but robust WAV format encoder now included. Extentions in the near future might include Ogg.

Supported Project Files

  • Visual Studio 2013
  • Visual Studio 2015
  • XCode 6

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.