Skip to content

Commit

Permalink
fix(FEC-12000): smart tv - dash video not working (#530)
Browse files Browse the repository at this point in the history
set `lowLatencyMode` to false by default in smart TV's

Solves FEC-12000
  • Loading branch information
yairans authored Mar 1, 2022
1 parent af8fbcf commit 4edac6f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/common/utils/setup-helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ function _configureLGSDK2HlsLiveConfig(options: KPOptionsObject): void {
}

/**
* Sets config option for LG TV
* Sets config option for smart TV
* @private
* @param {KPOptionsObject} options - kaltura player options
* @returns {void}
Expand Down Expand Up @@ -434,6 +434,10 @@ function configureSmartTVDefaultOptions(options: KPOptionsObject): void {
options = Utils.Object.createPropertyPath(options, 'plugins.youbora.playheadMonitorInterval', 2000);
}
}
const lowLatencyMode = Utils.Object.getPropertyPath(options, 'streaming.lowLatencyMode');
if (typeof lowLatencyMode !== 'boolean') {
options = Utils.Object.createPropertyPath(options, 'streaming.lowLatencyMode', false);
}
}
}

Expand Down

0 comments on commit 4edac6f

Please sign in to comment.