Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/also/soundtouch-as3

AS3 Port of the SoundTouch Sound Processing Library
https://github.com/also/soundtouch-as3

Last synced: 4 days ago
JSON representation

AS3 Port of the SoundTouch Sound Processing Library

Awesome Lists containing this project

README

        

SoundTouch AS3
==============

An ActionScript 3 port of the [SoundTouch][1] audio processing library.

SoundTouch AS3 allows realtime processing of audio in Flash 10. It includes filters that perform time compression/expansion and rate transposition. In tandem, these filters can perform pitch-shifting.

Usage
=====

var source:Sound = …;
var output:Sound = new Sound();

var soundTouch:SoundTouch = new SoundTouch();
soundTouch.pitchSemitones = -6;

var filter:SimpleFilter = new SimpleFilter(sound, soundTouch);
output.addEventListener(SampleDataEvent.SAMPLE_DATA, filter.handleSampleData);

output.play();

For details on using the SoundTouch, Stretch, or RateTransposer classes, look in SimpleFilter and FilterSupport.

Roadmap
=======

The original C++ library includes several features that have not yet been implemented in ActionScript, including a FIR filter, which can be used to prevent aliasing during rate transposition.

Support
=======

For issues using SoundTouch AS3, open a ticket at the [GitHub project][2], or contact [[email protected]][3].

License
=======

SoundTouch AS3 audio processing library

Copyright © Olli Parviainen 2001-2009
Copyright © Ryan Berdeen 2009

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.

This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

[1]: http://www.surina.net/soundtouch/
[2]: http://github.com/also/soundtouch-as3/issues
[3]: mailto:[email protected]