I try to make a list of videos that play a stream in m3u8 and flv format, my problem is with the flv player, I was using flv.js and mpegts.js , with both I have the same problem, they only load the first 6 videos and the rest stops loading, which seems strange to me, I tried different player configurations and I can't get them to load more than 6 videos simultaneously, has anyone had the same problem and solved it? .
this.flvPlayer = flvjs.createPlayer(
{
url: this.source,
type:this.type,
isLive: true,
hasAudio: false,
hasVideo: true,
stashInitialSize: 128,
enableStashBuffer: false,
},
);
this.flvPlayer.attachMediaElement(videoElement);
this.load();
this.play();