Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Web Audio API server-side?

Is it possible to use Web Audio API server-side (e.g. in Node.js)? I'd like to process "offline" my audio files in order to apply audio effects (https://stackoverflow.com/a/8101383/553341).

like image 555
rashtao Avatar asked Nov 09 '12 22:11

rashtao


2 Answers

Have a look at https://github.com/sebpiq/node-web-audio-api

Most of the AudioNodes are not implemented, but in the future it might become useful.

like image 67
sebpiq Avatar answered Sep 23 '22 22:09

sebpiq


Not at the moment, no. You'd basically have to adapt the webkit source code and do all the plumbing yourself.

like image 38
Oskar Eriksson Avatar answered Sep 20 '22 22:09

Oskar Eriksson