Browse Source

hls muxer: remove progressive flag; add liveSyncDurationCount, liveMaxLatencyDurationCount to hls.js

pull/956/head
aler9 4 years ago
parent
commit
ae7e68c914
  1. 4
      internal/core/hls_muxer.go

4
internal/core/hls_muxer.go

@ -66,7 +66,9 @@ const create = () => { @@ -66,7 +66,9 @@ const create = () => {
} else {
const hls = new Hls({
progressive: true,
progressive: false,
liveSyncDurationCount: 2,
liveMaxLatencyDurationCount: 3,
});
hls.on(Hls.Events.ERROR, (evt, data) => {

Loading…
Cancel
Save