Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/also/soundtouch-as3
- Owner: also
- License: lgpl-2.1
- Created: 2009-07-14T02:08:16.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2010-04-05T02:57:49.000Z (almost 15 years ago)
- Last Synced: 2024-11-11T10:12:48.127Z (2 months ago)
- Language: ActionScript
- Homepage: http://also.github.com/soundtouch-as3/
- Size: 192 KB
- Stars: 61
- Watchers: 11
- Forks: 6
- Open Issues: 2
-
Metadata Files:
- Readme: README.markdown
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-actionscript-sorted - soundtouch-as3 - AS3 Port of the SoundTouch Sound Processing Library (Multimedia / Sound)
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 2009This 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]