How to save sound with Web Audio API and Tone.js i

2019-09-20 00:47发布

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条回答
爷的心禁止访问
2楼-- · 2019-09-20 01:31

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.

查看更多
登录 后发表回答