Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Audio manipulation using node.js

My team has been using the Web Audio API/Getusermedia in a product and we are going really well with our chrome and firefox users. But we still have a large base of users that we would love to reach, but due to technology barriers, we still can't (mostly, those are IE users), as their main browser does not support the technology, and they do not or can not change to a modern browser.

We are planning to get to those users, but we don't want to go to Flash, Flex, Silverlight or anything similar.

So, thinking about solutions, I thought that maybe I could pass by this difficulty if I moved the audio manipulation, from the browser to the server. NodeJS was the first answer when trying to figure out how to do it.

Would it be possible to be done using NodeJS? Are there any libraries available that would help us accomplish this? Are there any other technologies that would allow me to do this?

Thanks anyone that could help.

like image 280
user3288673 Avatar asked Feb 24 '14 18:02

user3288673


1 Answers

You can try using this (is in development):

Node Web Audio API

https://github.com/sebpiq/node-web-audio-api

Installation

npm install web-audio-api

Demo

node test/manual-testing/AudioContext-sound-output.js
like image 199
Leandro Bardelli Avatar answered Sep 17 '22 12:09

Leandro Bardelli