I am working with node.js and I streamed my Audio to my node.js server. Now I noticed during the process of building the audio blob:
var audioBlob = new Blob([dataview], { type: 'audio/wav' });
That I get a ReferenceError at new Blob. It seems that Blob is not supported. How can I create a blob which I would like to save with node.js fs module.
Thanks guys!
mimeproperty to theBuffersince it's still dynamic. But, MIME types are for communicating binary data; not so much for saving to disk. – Jonathan Lonowski Feb 1 '13 at 20:37