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
Module | Implemented | Supported | Notes | |||
---|---|---|---|---|---|---|
Player | Playback | HLS | Linear, Live | Linear, Live | ||
MPD | Linear*, Live* | Supported* | Only 2016+ devices, Smart TV Alliance model or includes drmAgent | |||
ISM | Linear*, Live* | Linear*, Live* | Only 2016+ devices, Smart TV Alliance model or includes drmAgent | |||
MP4 | Linear | Linear | ||||
DRM | PlayReady | Linear | Supported* | Only 2016+ devices, Smart TV Alliance model or includes drmAgent | ||
AES | Linear | Supported | ||||
Widevine | Classic | Not Supported | Not Supported | |||
Widevine | Modular | Not Supported | Not Supported | |||
Verimatrix | 3.6 | Not supported | Not supported | |||
Verimatrix | 4.1 | Not supported | Not supported | |||
Subtitles | HLS | from HTML5PlayerExternalSubtitle | from HTML5PlayerExternalSubtitle | |||
MPD | from HTML5PlayerExternalSubtitle | from HTML5PlayerExternalSubtitle | ||||
ISM | from HTML5PlayerExternalSubtitle | from HTML5PlayerExternalSubtitle | ||||
MP4 | from HTML5PlayerExternalSubtitle | from HTML5PlayerExternalSubtitle | ||||
Audio Tracks | HLS | from HTML5PlayerAudioTrack | from HTML5PlayerAudioTrack | |||
MPD | from HTML5PlayerAudioTrack | From HTML5PlayerAudioTrack | ||||
ISM | from HTML5PlayerAudioTrack | From HTML5PlayerAudioTrack | ||||
MP4 | from HTML5PlayerAudioTrack | From HTML5PlayerAudioTrack | ||||
System | UUID | Implemented* | Not supported | Using uuid | ||
Device Type | Supported | Supported | ||||
App Resolution | Supported | Supported | ||||
Network | Supported | Supported | ||||
Storage | Local, Cookie | Local, Cookie | ||||
TVKey | Supported | Supported | ||||
Mouse | Mouse | Mouse |
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 Type | Create Keypress Event | Ignore Real Keypress Event |
---|---|---|
non-printable char | No | No |
Enter | Yes | No |
Number | Yes | No |
Shifted | Yes | No |
Alphabet | Yes | No |
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)
Type | Create Keypress Event | Ignore Real Keypress Event |
---|---|---|
non-printable char | No | Yes |
Enter | Yes | Yes |
Number | Yes | Yes |
Shifted | Yes | Yes |
Alphabet | No | No |