私はしばらくの間jRecorderを使用していますが、それがどれほど軽量であるかを考えるとかなり良いです。
さて、jRecorderが録音後に録音した音声を再生しないようにする必要がある場合があります。私はjRecorder内のほとんどすべての関数を試しましたが、ドキュメントは素晴らしいものではありません。
誰もがこれに遭遇し、これを回避しましたか?
これがコードです。実際には標準のjRecorderのものです。
$.jRecorder({
'swf_path': '/scripts/jrecorder1.1/jRecorder.swf',
'host': host,
'callback_started_recording': function() {
$('.audio-recorder').addClass('recording');
},
'callback_finished_recording': function() {
$('.audio-recorder').removeClass('recording');
},
'callback_stopped_recording': function() {
$.jRecorder.sendData();
$('.audio-recorder').removeClass('recording');
},
'callback_error_recording': function() {
$('.audio-recorder').removeClass('recording');
},
'callback_activityTime': function(time) {
},
'callback_activityLevel': function(level) {
},
'callback_finished_sending': function(response) {
}
}, $('.audio-recorder .audio-recorder-singleton'));