我已经使用 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'));