Memory is constantly increasing while playing the video. #4063
anandpatel0123
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
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi All,
I am playing the DRM dash(widewine) video. Video is playing smoothly but memory is constantly increasing.
ABR settings:
`this.dashPlayer.updateSettings({
streaming: {
abr: {
minBitrate: {
video: -1,
},
maxBitrate: {
video: 1500,
},
},
buffer: {
fastSwitchEnabled: true,
flushBufferAtTrackSwitch: true,
bufferPruningInterval: 2,
bufferToKeep: 15,
stableBufferTime: -1,
bufferTimeAtTopQuality: 15,
bufferTimeAtTopQualityLongForm: 30,
},
},
});
//destroy the player
destro(){
if (this.dashPlayer) {
this.dashPlayer.reset();
this.dashPlayer.destroy();
this.dashPlayer = null;
}
}`
Beta Was this translation helpful? Give feedback.
All reactions