javascript - Stream media file using WebRTC - Stack Overflow: "It is possible to play the audio using the Audio element like this:
function gotRemoteStream(event) {
var player = new Audio();
attachMediaStream(player, event.stream);
player.play();
}
Playing back the audio via the WebAudio API it not working (yet) for me."
'via Blog this'