Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(FEC-12189): Stream doesn't start if open a program with a bookmark #652

Merged
merged 11 commits into from
Oct 2, 2022
7 changes: 4 additions & 3 deletions docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -1066,7 +1066,8 @@ var config = {
> ```js
> {
> forceBreakStall: false,
> lowLatencyMode: true // false in smart TV
> lowLatencyMode: true // default for hls playback (optional)
> lowLatencyMode: false // default for dash & smart TV playback (optional)
> }
> ```
>
Expand All @@ -1082,11 +1083,11 @@ var config = {
>
> > ##
> >
> > ### config.streaming.lowLatencyMode
> > ### config.streaming.lowLatencyMode (optional)
> >
> > ##### Type: `boolean`
> >
> > ##### Default: `true`. `false` in smart TV due to an issue in dash on samsung.
> > ##### Default: hls: `true`, dash and smart TV: `false` (in smart TV due to an issue in dash on samsung)
> >
> > ##### Description: Enable low latency streaming mode

Expand Down
3 changes: 1 addition & 2 deletions src/player-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,7 @@ const DefaultConfig = {
]
},
streaming: {
forceBreakStall: false,
lowLatencyMode: true
forceBreakStall: false
giladna marked this conversation as resolved.
Show resolved Hide resolved
},
abr: {
enabled: true,
Expand Down