Phonegap 录制声音。听到声音后保存到文件
Phonegap record sound. Save to a file after when something heard
有没有可以捕捉声音并保存的插件?所以它会等待一些声音阈值,然后才开始将声音写入文件或者只是可以 ping,听到任何声音?
试试这个:cordova-plugin-sound-meter
使用此代码启动检测:
window.soundMeterPlugin.getAmplitude(function(e){
//success callback
alert(e["amplitude"]);
}, function(e){
//error callback
alert('The error is: ' + e);
});
成功回调后,您可以开始使用
Cordova Media Capture to Record Audio
有没有可以捕捉声音并保存的插件?所以它会等待一些声音阈值,然后才开始将声音写入文件或者只是可以 ping,听到任何声音?
试试这个:cordova-plugin-sound-meter
使用此代码启动检测:
window.soundMeterPlugin.getAmplitude(function(e){
//success callback
alert(e["amplitude"]);
}, function(e){
//error callback
alert('The error is: ' + e);
});
成功回调后,您可以开始使用 Cordova Media Capture to Record Audio