Kuba
Kuba
Hi, Our QA observed an issue with Safari livestream. The stream freezes for about 10-30 seconds. I also checked how RxPlayer behaves in this situation in MyCanal app and the...
```ts type Replace< S extends string, From extends string, To extends string, > = From extends '' ? S : S extends `${infer L}${From}${infer R}` ? `${L}${To}${R}` : S extends...
```ts type MyCapitalize = S extends `${infer Head}${infer Tail}` ? `${Uppercase}${Tail}` : ''; ```
```ts type IsLetter = Uppercase extends Lowercase ? false : true; // check that is difference between uppercase and lowercase type CapitalizeWords = [ S, ] extends [`${infer CurrentLetter}${infer Tail}`]...
```ts type EmptySpaces = ' ' | '\n' | '\t'; type Trim = S extends | `${EmptySpaces}${infer T}` | `${infer T}${EmptySpaces}` ? Trim : S; ```
For the "Pause TV" functionality, we set the **autoplay** property to false (`ILoadVideoOptions`). This causes RxPlayer to go into a perpetual loading/buffering state. The situation only applies to Safari Mobile....
Issue observed on `Micosoft Edge` browser, when running on Windows 11. After updating the RxPlayer form `v3.2.9` to `v3.3.0` there seems to be an issue with streaming using Flussonic or...
Hello, An issue observed on `Microsoft Edge` browser observed by other clients which are using Playready DRM. Issue: First playback for playready protected content on Edge browser fails. The request...
We discovered an unusual error occurring in the Edge browser when using `Playready/DASH` (Widevine/DASH works fine). The error message: `Uncaught MediaError: MediaError (MEDIA_ERR_SRC_NOT_SUPPORTED) DEMUXER_ERROR_COULD_NOT_OPEN: MediaFoundationRenderer error: kOnPlaybackError (A device which...
Hi, We set-up "LD (low quality) fallback" for Widevine for blocked system IDs (in case a Widevine license request id done by a blocked system ID device). ...but RxPlayer does...