Twitch Player Issue with microsoft edge

I am using twitch player in angular2 + and having issue in buffering of channel videos with Microsoft edge only.

as I am using code
JS used: “https://player.twitch.tv/js/embed/v1.js

this.carouselVideoList.videos.forEach((element, index) => {
this.playerArr[index] = {};
this.playerArr[index].player = new Twitch.Player($(’.playerInstance’)[index], {video: id, autoplay: false});
this.playerArr[index].player.addEventListener(Twitch.Player.READY, function() {
$(’.carousel’).carousel(‘pause’);
});
this.playerArr[index].player.addEventListener(Twitch.Player.ENDED, function() {
that.playerArr[index].player.pause();
$(’.carousel’).carousel(‘cycle’);
});
});

so please help me out to fix this.
Thanks
Prahlad

This topic was automatically closed 60 minutes after the last reply. New replies are no longer allowed.