My web page is using the Temasys plugin in IE 11. The video is displaying fine but when I close the video I get the following exception:
MEDIA12899: Audio/Video : Unknown MIME type
Below is the code I use on the stop. The code works in Chrome. I need to be able to reuse the videoOutput because of my retry logic - sometimes it take more than 1 try to get the video.
Tim
stop: function () {
videoOutput.pause();
if (webRtcPeer) {
webRtcPeer.dispose();
webRtcPeer = null;
}
if (pipeline) {
pipeline.release();
pipeline = null;
}
kClient.close();
hideSpinner(videoOutput);
}
}