Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/carlosrafaelgn/GraphicalFilterEditor
A test for porting an old C++ graphic equalizer to JavaScript + HTML5 using Web Audio API and WebAssembly
https://github.com/carlosrafaelgn/GraphicalFilterEditor
fft filter fir-filter typescript webassembly webaudio
Last synced: 3 months ago
JSON representation
A test for porting an old C++ graphic equalizer to JavaScript + HTML5 using Web Audio API and WebAssembly
- Host: GitHub
- URL: https://github.com/carlosrafaelgn/GraphicalFilterEditor
- Owner: carlosrafaelgn
- License: mit
- Created: 2012-04-02T21:14:35.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2024-07-15T10:57:07.000Z (4 months ago)
- Last Synced: 2024-07-15T12:57:42.708Z (4 months ago)
- Topics: fft, filter, fir-filter, typescript, webassembly, webaudio
- Language: TypeScript
- Homepage: https://carlosrafaelgn.github.io/GraphicalFilterEditor/
- Size: 3.32 MB
- Stars: 46
- Watchers: 8
- Forks: 16
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-javascript-audio - GraphicalFilterEditor - very powerful sound shaping :) (Sound editing / Sound equalizers)
README
GraphicalFilterEditor
=====================This is a test for a JavaScript graphical filter editor, based on my old C++ graphic equalizer.
With this editor you can graphically edit an equalizer filter and apply it to songs in real time. You can also apply the filter to an entire song and download a WAVE file with the filtered song. Check out the live sample:
https://carlosrafaelgn.github.io/GraphicalFilterEditor/
The code in index.html can be used as a demo on how to load and generate files during runtime in client-side JavaScript.
This project uses [Web Audio API](http://www.w3.org/TR/webaudio/), [File API](http://www.w3.org/TR/FileAPI/) and [Web Worker API](http://www.w3.org/TR/workers/) and requires a [compliant browser](http://caniuse.com/audio-api) to run properly. In [Firefox 23 and 24](https://wiki.mozilla.org/WebAudio_API_Rollout_Status), Web Audio API must be enabled using about:config.
If running this sample locally, Chrome must be started with the command-line option --allow-file-access-from-files otherwise you will not be able to load any files!
Run `tscdbg` or `tscmin` to compile the TypeScript files (requires tsc and closure-compiler), or run `make rebuild` to compile the C code (requires make and Emscripten). All build scripts target the Windows platform, and a few changes should be made to make them run under Linux or Mac.
This project is licensed under the [MIT License](https://github.com/carlosrafaelgn/GraphicalFilterEditor/blob/master/LICENSE.txt).
---
Notice for the FFT library
Reference:
* Masatake MORI, Makoto NATORI, Tatuo TORII: Suchikeisan, Iwanamikouzajyouhoukagaku18, Iwanami, 1982 (Japanese)
* Henri J. Nussbaumer: Fast Fourier Transform and Convolution Algorithms, Springer Verlag, 1982
* C. S. Burrus, Notes on the FFT (with large FFT paper list) http://www-dsp.rice.edu/research/fft/fftnote.asc
Copyright(C) 1996-2001 Takuya OOURA
email: [email protected]
download: http://momonga.t.u-tokyo.ac.jp/~ooura/fft.html
You may use, copy, modify this code for any purpose and without fee. You may distribute this ORIGINAL package.
http://www.kurims.kyoto-u.ac.jp/~ooura/fft.html
https://www.jjj.de/fft/fftpage.html