VideoJs, hls configuration #8664
akki13sisodiya
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi folks, I am using video.js (version 7.20.3) to play my HLS live stream. I am currently utilizing this configuration, but I'm unsure if it's correct, as it's legacy. Our users are experiencing high rebuffering and long video start times. Could anyone suggest documentation or alternative configurations to help reduce these issues?
onst player = videojs(videoEl, { debug: true, title: "", html5: { vhs: { overrideNative: true, enableLowInitialPlaylist: true, limitRenditionByPlayerDimensions: false, experimentalBufferBasedABR: true, bandwidth: 511023, hlsjsConfig: { startLevel: 0, capLevelToPlayerSize: false, enableWorker: true, liveBackBufferLength: 15, backBufferLength: 15, liveMaxBackBufferLength: 15, maxBufferSize: 0, maxBufferLength: 30, liveSyncDurationCount: 1, fragLoadingTimeOut: 20000, }, }, nativeAudioTracks: false, nativeTextTracks: false, } });
Beta Was this translation helpful? Give feedback.
All reactions