Skip to content

Commit

Permalink
fix(FEC-12189): Stream doesn't start if open a program with a bookmark (
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanTGold authored Oct 2, 2022
1 parent 6f799ad commit 2da12c9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
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
},
abr: {
enabled: true,
Expand Down

0 comments on commit 2da12c9

Please sign in to comment.