THEOplayer / web-ui

UI component library for the THEOplayer Web SDK
https://www.theoplayer.com/docs/open-video-ui/web/
MIT License
10 stars 0 forks source link

Smart TV support #40

Closed Jeroen-Veltmans closed 10 months ago

Jeroen-Veltmans commented 11 months ago

Initial implementation for #23.

Added navigation with the TV remote. Slightly optimized default TV UI. Increased default idle timeout for TVs. Some smaller bugfixes.

Known issues:

Tizen 4.0 and Tizen 5.0 do not work as of now, partly due to a bug in the polyfill. I opened an issue which can be tracked here: https://github.com/webcomponents/polyfills/issues/565 For now, it can be bypassed on Tizen 4.0 by adding the following script BEFORE loading the polyfills:

<script nomodule>
    customElements = customElements || {};
    customElements.forcePolyfill = true;
</script>

For Tizen 5.0 you would need to add the above, but also remove every nomodule for the legacy scripts as it will not load them otherwise.

Tizen 2.4 doesn't even show the player at the moment.