Skip to content

Commit 9560a8c

Browse files
committed
chore: Upgraded HLS.js to beta.3
1 parent 908106a commit 9560a8c

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

bun.lockb

-40 Bytes
Binary file not shown.

packages/player/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"typedoc": "typedoc --tsconfig tsconfig.typedoc.json"
2323
},
2424
"dependencies": {
25-
"hls.js": "^1.6.0-beta.2",
25+
"hls.js": "^1.6.0-beta.3",
2626
"tseep": "^1.3.1",
2727
"shared": "workspace:*"
2828
},

packages/player/src/hls-player.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,10 @@ export class HlsPlayer {
180180
this.state_?.setVolume(volume);
181181
}
182182

183+
get unstable_hlsjsVersion() {
184+
return Hls.version;
185+
}
186+
183187
get ready() {
184188
return getState(this.state_, "ready");
185189
}

packages/stitcher/src/interstitials.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export function getStaticDateRanges(
8484
clientAttributes["PLAYOUT-LIMIT"] = item.maxDuration;
8585
}
8686

87-
const cue: string[] = [];
87+
const cue: string[] = ["ONCE"];
8888
if (startDate.equals(session.startTime)) {
8989
cue.push("PRE");
9090
}

0 commit comments

Comments
 (0)