Patrick Eijkelhardt
Patrick Eijkelhardt
> You wrote that the content does play in a loop? With sound? Yes, with sound. It's played in a loop as well. I also see discontinuities for both `video`...
Hi @peaBerberian, I did a quick test by modifying the source code, but unfortunately, without success. You've mentioned both `InvalidAccessError` & `InvalidStateError`, so I did a test with these 2...
> > This exception pops up: > > OK, so it seems to consider the failed `generateRequest` like an initialization... > > Can you directly replace the line: > >...
> return session.generateRequest("cenc", patchedInit); This has a positive effect! The stream is able to play. When testting the setup I also added a small `console.log` to check the value of...
These are the logs collected from the initial session: ``` API: Calling loadvideo https://{redacted}GlobalManifest.mpd dash API: current media element state tick event init position 0 seeking false internalSeek null rebuffering...
It doesn't seem to enter the `emitLoadedEvent` function at all. I've added some `console.logs` in this function, but they never fire in the second scenario.
When setting some more `console.logs`, it appears that this is the last function which was called: https://github.com/canalplus/rx-player/blob/48d1f845064cea5c5a3546d2c53b1855c2be149d/src/compat/play.ts#L35 Note that Tizen [2019](https://developer.samsung.com/smarttv/develop/specifications/web-engine-specifications.html) has a Chromium M63 browser Edit: The `mediaElement` remains...
Yes, we've set `autoPlay` to `true` in `loadVideo`. When setting this value to `false`, the `LOADED` state is indeed reached. Then, when calling `player.play()`, similar behaviour can be seen. These...
A small update: I've modified the `RxPlayer` code a bit, in order to support setting a new `video` element. Whenever the Tizen TV is reactivated, I remove the current `video`...
Yes, that might be the best option right now. I've tested it, by disposing the player first (calling `player.dispose()`), and creating a new instance of the player (together with a...