webrtc - 语音不起作用

时间:2013-03-21 07:20:48

标签: javascript html webrtc

我想使用webRTC显示来自我的相机的视频,并听到麦克风发出的声音,但声音不起作用。你知道为什么我的代码不能正常工作吗?

JS

if(navigator.getUserMedia){
        navigator.getUserMedia({
                video: true,
                audio: true
        }, onSuccess, onError);
}else{
        console.log('Twoja przegladarka nie obsluguje webRTC - getUserMedia');
}

function onSuccess(stream){
        var video = document.getElementById('webcam'),
        videoSrc;
        //audioContext,
        //mediaStreamSource;

         if (window.webkitURL) {
      videoSource = window.webkitURL.createObjectURL(stream);
    } else {
      videoSource = stream;
    }

        video.autoplay = true;
        video.src = videoSource;

var audioContext = 'AudioContext' in window ? new AudioContext() :
    (('webkitAudioContext' in window) ? new webkitAudioContext() : null);
  if (audioContext) {
    var mediaStreamSource = audioContext.createMediaStreamSource(stream);
    mediaStreamSource.connect(audioContext.destination);
  } else {
    // ...
  }    
}

1 个答案:

答案 0 :(得分:0)

27.0.1436.1之前的Chrome版本默认为与LocalMediaStreams相关联的视频元素设置了“静音”属性。设置video.muted = false应启用本地音频播放。

有关详细信息,请参阅this postthis example