• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

bindings/H03-May-2022-13,3419,230

config/H03-May-2022-132106

include/H03-May-2022-11,7693,029

plugins/H03-May-2022-5,3503,290

src/H03-May-2022-43,40039,823

AUTHORSH A D20-Nov-2019676 1711

CHANGESH A D20-Nov-20194.1 KiB116104

INSTALLH A D20-Nov-20195.6 KiB10867

LICENSEH A D20-Nov-201911.1 KiB203169

README.mdH A D20-Nov-20192.1 KiB4837

blender_config.cmakeH A D20-Nov-20191.4 KiB3028

README.md

1audaspace
2=========
3
4Audaspace (pronounced "outer space") is a high level audio library written in C++ with language bindings for Python for example. It started out as the audio engine of the 3D modelling application Blender and is now released as a standalone library.
5
6Documentation and Community
7---------------------------
8
9The documentation including guides for building and installing, demos, tutorials as well as the API reference for C++, C and python can be found on https://audaspace.github.io.
10
11Bug reports and feature requests should go to the [issue tracker](https://github.com/audaspace/audaspace/issues).
12
13For any other discussions about audaspace there is a [mailing list](https://groups.google.com/forum/#!forum/audaspace) and there is also the IRC channel #audaspace on irc.freenode.net.
14
15Features
16--------
17
18The following (probably incomplete) features are supported by audaspace:
19
20* input/output devices
21 * input from microphones, line in, etc.
22 * output devices including 3D audio support
23* file reading/writing
24* filters like low-/highpass and effects like delay, reverse or fading
25* generators for simple waveforms like silence, sine and triangle
26* respecification - this term is used for changing stream parameters which are
27 * channel count - channel remapping
28 * sample format - the library internally uses 32 bit floats
29 * sample rate - resampling
30* simple (superposition, joining and ping-pong aka forward-reverse) and more complex (non-linear audio editing) sequencing of sounds
31
32License
33-------
34
35> Copyright © 2009-2015 Jörg Müller. All rights reserved.
36>
37> Licensed under the Apache License, Version 2.0 (the "License");
38> you may not use this file except in compliance with the License.
39> You may obtain a copy of the License at
40>
41>   http://www.apache.org/licenses/LICENSE-2.0
42>
43> Unless required by applicable law or agreed to in writing, software
44> distributed under the License is distributed on an "AS IS" BASIS,
45> WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
46> See the License for the specific language governing permissions and
47> limitations under the License.
48