HLs.js stuttering audio stream on Safari only

Viewed 166
1 Answers

I have figured out that Safari has built-in HLS by default. So instead of using hls.js I am just checking if a browser has built-in one, if yes, i am just doing audio.src = mySrc otherwise use new Hls() of hls.js

Related