I want to make a simple audio only stream over WebRTC, using Peer.js. I\'m running the simple PeerServer locally.
The following works perfectly fine in Firefox 30, b
I was unable to play the stream using web audio but I did manage to play it uses a basic audio element:
var audio = new Audio(); audio.src = (URL || webkitURL || mozURL).createObjectURL(remoteStream); audio.play();