[Vuejs]-Cannot View Stream from Janus-Gateway in Vuejs on page change

0👍

The problem turned out to be due to the fact that I stopped sending the Janus server frames when the page was changed. This caused the UDP stream to deconstruct within the janus server. Then recreate when the page was returned to. The creation of a new stream caused the WebRTC handshake to fail. I changed my approach to never stop sending frames and the page changes now work properly.

Leave a comment