oampo/Audiolet

WAV Output

Opened this issue · 3 comments

Add a node which buffers audio into a Float32Array and allows you to export it as a .wav file.

sntx commented

This will be great because the .wav file could be downloaded to the user's computer, but also, it could be sent to a server using AJAX.

any news on this? working on an interactive (not-quite) game where this would be most excellent.

Depends slightly what you want it for. Now I've switched to using https://github.com/jussi-kalliokoski/sink.js you can use the record method of audiolet.output.device.sink to record the master output, then encoding that to a wav is pretty simple (have a look at http://www.sk89q.com/playground/jswav/ for how to encode the raw data).

Eventually I want to encapsulate this more neatly into a RecordBuffer node which will allow you to grab data from anywhere in the processing graph and encode it. For now though it should be not too tricky to hack it in if you just need the output recording.

Let me know how you get on, and if there's any of this you are struggling with and I'll do my best to help out.