Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joshb/dromeaudio
A small audio manipulation and playback library that's written in C++.
https://github.com/joshb/dromeaudio
Last synced: about 1 month ago
JSON representation
A small audio manipulation and playback library that's written in C++.
- Host: GitHub
- URL: https://github.com/joshb/dromeaudio
- Owner: joshb
- License: other
- Created: 2009-04-18T19:47:26.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2015-11-18T22:55:53.000Z (about 9 years ago)
- Last Synced: 2024-11-16T22:38:48.614Z (about 1 month ago)
- Language: C++
- Homepage:
- Size: 77.1 KB
- Stars: 17
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: COPYING
Awesome Lists containing this project
README
DromeAudio
ABOUT
-----
DromeAudio is a small audio manipulation and playback library that's
written in C++. It features a simple API for loading, generating,
processing, and playing audio.DromeAudio was written by Josh Beam and is distributed
under a BSD-style license. There is NO WARRANTY for this software. See the
'COPYING' file included with DromeAudio for more information.FEATURES
--------
Some of DromeAudio's features include:- Loading and saving WAV sounds
- Loading Ogg Vorbis sounds
- Audio mixing and playback
- Dynamic audio processing effects, including pitch shifting, oscillator,
and echo effects
- Smart pointers with reference counting so that unused sounds are
automatically removed from memoryPLATFORMS
---------
DromeAudio has been successfully tested and used on the following
operating systems / hardware architectures:- Arch Linux / x86
- Mac OS X 10.6 / x86-64REQUIREMENTS
------------
DromeAudio uses the CMake build system, which can be found at:http://www.cmake.org/
DromeAudio can be used with the following optional libraries for
certain functionality:- vorbisfile (for Ogg Vorbis sound loading) - http://www.xiph.org/
- SDL (for audio playback) - http://www.libsdl.org/
- alsa-lib (for audio playback) - http://www.alsa-project.org/INSTALLATION
------------
DromeAudio should be built in a directory separate from its source
code. It can be built and installed by running the following commands
from the root source directory:mkdir build; cd build
cmake .. && make && make installUSAGE
-----
See the 'examples' directory included with DromeAudio for sample
code using the library.