i want to play my m3u8 live stream from obs source ... the problem is that i don't want to buffer ... i am using hls.js
and setting the maxBufferLength to "1" and backBufferLength to "0" ... but it keep buffer so how can i make it play without buffering like youtube live and if i pause the video and replay then ... it continue from the live point not the pause point
var hls = new Hls();
hls.maxBufferLength = 1;
hls.backBufferLength = 0;
hls.loadSource(videoSrc);
hls.attachMedia(video);
here is my code