Japanese | English
ASound
Asound is easy and simple Audio Processing library by KappaLab
Feature
- Simple and Easy
- API like DisplayObject Classes
demo
http://memo.kappa-lab.com/samples/Exsample4.swf
How to
//220Hz Sine Wave
//http://www.libspark.org/browser/as3/ASound/branches/gamiken/src/example/Example.as
//http://memo.kappa-lab.com/samples/Exsample.swf
var ins:Instrument = new Instrument();
ins.signals.push(new SinOSC(220));
ins.play();
//220Hz Sine Wave,880Hz Sine Wave,900Hz Sine Wave and Noise ,Sound composition
//and ResonantFilter?
//http://www.libspark.org/browser/as3/ASound/branches/gamiken/src/example/Example2.as
//http://memo.kappa-lab.com/samples/Exsample2.swf
var ins:Instrument = new Instrument();
ins.signals.push(new SinOSC(220));
ins.signals.push(new SinOSC(800));
ins.signals.push(new SawOSC(900));
ins.signals.push(new NoiseOSC());
ins.generateEnvelop(0, [1, 1000, 0, 1000]);
ins.filters.push(new ResonatFilter??(ins));
ins.play();
SHOW CASE
Production:http://www.birdman.ne.jp/
MORE DETAIL
http://memo.kappa-lab.com/2009/05/asound_sample_files_fla.html
svn
http://www.libspark.org/browser/as3/ASound/branches/gamiken
LICENSE
Licensed under the MIT License Copyright (c) 2009 kappa-lab (www.kappa-lab.com) All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
author
kappa-lab.com::gamiken
gamiken[at].kappa-lab.com
http://memo.kappa-lab.com

