Microm 是一个漂亮的库,可以用 JavaScript 将浏览器的麦克风转为 MP3,Microm 的目的是让浏览器里的播放和转播变得简单。
示例代码:
var microm = new Microm();var mp3 = null;start();setTimeout(stop, 1500);function start() { microm.startRecording().then(function() { console.log('recording...') }).catch(function() { console.log('error recording'); }); }function stop() { microm.stop().then(function(result) { mp3 = result; console.log(mp3.url, mp3.blob, mp3.buffer); play(); download(); }); }function play() { microm.play(); }function download() { var fileName = 'cat_voice'; microm.download(fileName); }