Browse Source

hls muxer: tune hls.js parameters

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

6
internal/core/hls_muxer.go

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

Loading…
Cancel
Save