From f31d1817b86f775f27dae10e76d6d74f7d8fc3d9 Mon Sep 17 00:00:00 2001 From: Matthias Van Parijs Date: Thu, 5 Sep 2024 23:04:59 +0200 Subject: [PATCH] chore: Updated bugs list --- packages/hlsjs/README.md | 2 ++ packages/hlsjs/src/main.tsx | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/hlsjs/README.md b/packages/hlsjs/README.md index ab7a6df4..2962f64a 100644 --- a/packages/hlsjs/README.md +++ b/packages/hlsjs/README.md @@ -7,3 +7,5 @@ Using https://www.svgrepo.com/collection/solar-broken-line-icons for icons. - When we have a preroll interstitial and we select the subtitle, it will only respect the first selected subtitle. Changing subtitle afterwards has no effect. - When interstitials startTime is beyond the end of the content duration, there are stalls sometimes and content stops buffering. This can be replicated manually when setting interstitials further away. + +- Selecting audio and quality during interstitials works for the main asset, but subtitles not. diff --git a/packages/hlsjs/src/main.tsx b/packages/hlsjs/src/main.tsx index 03035e75..2bf1a540 100644 --- a/packages/hlsjs/src/main.tsx +++ b/packages/hlsjs/src/main.tsx @@ -14,7 +14,7 @@ Object.assign(window, { facade }); // hls.config.startPosition = 10; hls.loadSource( - "http://127.0.0.1:52002/session/e158bbf7-6a25-4ab5-b5a0-806fe85f862f/master.m3u8", + "http://127.0.0.1:52002/session/6371e172-bf65-4e7c-a0bd-b167c1256ba0/master.m3u8", ); const root = ReactDOM.createRoot(document.getElementById("root")!);