How to save sound with Web Audio API and Tone.js in a browser

穿精又带淫゛_ 提交于 2019-12-25 17:59:05

问题


Using the above mentioned library whats the easiest way to save tunes on a server ? I trying to think of a way to record the sounds in the browser and be able to save them to the server.

And would I be able to store them in a Database ? what is the best way to do so , can anyone explain a bit ?


回答1:


The easiest method is to use the MediaRecorder API to capture a MediaStream, to which your audio graph is connected to. This will get you a recording, typically in Opus (unless you want Vorbis, but I don't recommend it), and you can either stream the data from the MediaRecorder as its emitted, or let it record a whole "file" which you upload afterwards.

As of how you store it... you can store it however you want. That's really an unanswerable question without knowing what your requirements are. Sure, I suppose you could jam all your binary data in your database, and there are rare use cases where this is useful... but usually you'll want to keep this blobs somewhere else and reference them from your database.



来源:https://stackoverflow.com/questions/46468805/how-to-save-sound-with-web-audio-api-and-tone-js-in-a-browser

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!