I want to make a website with some interactive parts which should process audio in a more or less simple way. (For now, I just want to filter audio with a LPF)
Since there are so many possible ways out there to make interaction happening on the web (JScript, HTML5,...), I wanted to ask you, what is a good way to process audio. Here are some facts about what I want to do:
- the audio file is located on the server, no audio from the client
- it doesn't have to support every browser, it's OK when it doesn't run on IE or Opera for now (but i rather take full support for the latest Versions) ;)
- some parameters of the algorithm (for example cuttoff frequency) have to be controlled by the client (I can't just process the audio Input in one run or seconds before playing it)
- I know I could make it with java applets but I want to get around the whole "agree to use java"-thing. (If the browser is sceptical towards java)
- last thing: I would like to use HTML / JS and so on for the interface (which would be like 1 or 2 sliders)
I think that is all i can think of. What language / techniques would work the best? Thank you.