Skip to main content
Version: 4.2.x

xdk-device-panasonic-html5

@accedo/xdk-device-panasonic-html5

Accedo Build XDK Device Package - Panasonic HTML5

Instalation

$ npm i @accedo/xdk-device-panasonic-html5

Usage

import  panasonic, {ID as PANASONIC}  from '@accedo/xdk-device-panasonic-html5' ;

// include the device configuration into the packages to be detected and loaded
const devices = {
packages: [
// ...
panasonic // last device to load
],
detail: {
[PANASONIC]: [
extensions: [
// add extensions
]
]
}

Capabilities matrix

ModuleImplementedSupportedNotes
PlayerPlaybackHLSLinear, LiveLinear, Live
MPDLinear*, Live*Supported*Only 2016+ devices, Smart TV Alliance model or includes drmAgent
ISMLinear*, Live*Linear*, Live*Only 2016+ devices, Smart TV Alliance model or includes drmAgent
MP4LinearLinear
DRMPlayReadyLinearSupported*Only 2016+ devices, Smart TV Alliance model or includes drmAgent
AESLinearSupported
WidevineClassicNot SupportedNot Supported
WidevineModularNot SupportedNot Supported
Verimatrix3.6Not supportedNot supported
Verimatrix4.1Not supportedNot supported
SubtitlesHLSfrom HTML5PlayerExternalSubtitlefrom HTML5PlayerExternalSubtitle
MPDfrom HTML5PlayerExternalSubtitlefrom HTML5PlayerExternalSubtitle
ISMfrom HTML5PlayerExternalSubtitlefrom HTML5PlayerExternalSubtitle
MP4from HTML5PlayerExternalSubtitlefrom HTML5PlayerExternalSubtitle
Audio TracksHLSfrom HTML5PlayerAudioTrackfrom HTML5PlayerAudioTrack
MPDfrom HTML5PlayerAudioTrackFrom HTML5PlayerAudioTrack
ISMfrom HTML5PlayerAudioTrackFrom HTML5PlayerAudioTrack
MP4from HTML5PlayerAudioTrackFrom HTML5PlayerAudioTrack
SystemUUIDImplemented*Not supportedUsing uuid
Device TypeSupportedSupported
App ResolutionSupportedSupported
NetworkSupportedSupported
StorageLocal, CookieLocal, Cookie
TVKeySupportedSupported
MouseMouseMouse

Keypress Override

Panasonic has terribly bad KeyboardEvent handling and required quite custom logic to be implemented to align with other platforms.

The logic is also depending on the year-models that XDK is running on.

Since 2018, KeyboardEvent handling on Panasonic HTML5 v3 SDK is the same as Android WebView, where Keypress is consistently not fired and minimal handling is required.

On 2017 devices that use HTML5 v3 SDK and all devices that use HTML5 v2 SDK, i.e. devices released on or earlier than 2016 will have custom logic implemented.

On 2017 devices, the browser will generate Keypress event regardlessly. That means keypress of a printable character, e.g. "Q", and keypress of a function key, e.g. Key Up, will both generate Keypress event. The browser also generates Keypress event for keypress on pressing on USB keyboard attach, but pressing of the number keys on the remote does not cause the browser firing the corresponding Keypress event.

On 2016 or earlier devices, no keypress events are fired, even for pressing of printable characters.

To fix the abnormality mentioned, the TVKey class will check the system properties of the device it is running on and apply one of the following rules.

2018 Device or above

Criteria (2018)

  • No Smart TV Alliance API Object
  • OIPF LocalSystem object's family name property contains years greater than 2017

Logic (2018)

Key TypeCreate Keypress EventIgnore Real Keypress Event
non-printable charNoNo
EnterYesNo
NumberYesNo
ShiftedYesNo
AlphabetYesNo

2017 or earlier devices

Criteria (2017)

Either

  • No Smart TV Alliance API Object
  • OIPF LocalSystem object's family name property contains year equal to 2017

or

  • Has Smart TV Alliance API Object

Logic (2017)

TypeCreate Keypress EventIgnore Real Keypress Event
non-printable charNoYes
EnterYesYes
NumberYesYes
ShiftedYesYes
AlphabetNoNo