音频记录.js
用于 HTML5 的简化音频记录器,它使用 WebAudio API 将麦克风输入导出为 wav、mp3 或 ogg 文件。 基于 、 和
快速而肮脏的用法
audioRecorder.requestDevice(function(recorder){
// Create a recorder object (this will ask browser for microphone access)
recorder.start(); // Start recording
setTimeout(function(){ // Stop recording after 5 seconds
recorder.stop();
recorder.exportMP3(function(mp3Blob){ // Export t
1