我正在尝试从getUserMedia
创建的音频blob创建对象网址。该代码适用于Chrome,但Firefox中存在问题。
错误:
当我致电stopAudioRecorder()
时,它会停在audio_player.src = URL.createObjectURL(audio_blob);
TypeError: Argument 1 is not valid for any of the 2-argument overloads of URL.createObjectURL.
代码:
var stopAudioRecorder = function(audio_recorder) {
var audio_blob, audio_player, new_recording, save_button;
audio_recorder.stopRecording();
audio_blob = audio_recorder.getBlob();
audio_player = document.createElement("audio");
audio_player.src = URL.createObjectURL(audio_blob);
audio_player.controls = true;
audio_player.play();
$('#new_recording').appendChild(audio_player);
recording = false;
return ($("#record_button")).text("Start recording");
};
我尝试通过添加包装函数
来提供一些跨浏览器兼容性function createObjectURL ( file ) {
if ( window.webkitURL ) {
return window.webkitURL.createObjectURL( file );
} else if ( window.URL && window.URL.createObjectURL ) {
return window.URL.createObjectURL( file );
} else {
return null;
}
}
答案 0 :(得分:1)
在Firefox中,您可以直接将getUserMedia创建的媒体流提供给" mozSrcObject"音频元素的属性。所以下面的代码应该可以工作:
audio_player.mozSrcObject = audio_blob;
您应该考虑使用adapter.js文件来解释浏览器差异。