Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
246 views
in Technique[技术] by (71.8m points)

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

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 ?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...