speaker
var webcast = this.audioCtx.createWebcastSource(4096, 2);
this.outputNode.connect(webcast);
webcast.connect(this.audioCtx.destination);
webcast.connectSocket(encoder, this.url);
createWebcastSource
is from https://webcast.github.io/ right? So you're trying to stream FROM the browser TO some server?