Hi,
I have tried, devforms suggestions for our problem. We are followed all the points mentioned in devforms and still no luck. here the code what we are using at the moment in our application. Please let us know, should we need to add any additional properties or attributes to achieve full frame video.
if ((!this.stream.isSupportMultipleVideos() && (typeof (window as any).OffscreenCanvas === ‘function’))) {
this.stream.startVideo({ originalRatio: true, ptz: true, hd: true, videoElement: document.querySelector(‘#self-view-video’) }).then(() => {
if (!(typeof (window as any).MediaStreamTrackProcessor === ‘function’)) {
this.stream.renderVideo(document.querySelector(‘#self-view-canvas’), this.client.getCurrentUserInfo().userId, 1920, 1080, 0, 0, 3).then(() => {
this.isVideoStarted = true;
this.spinner.show();