YES, it is possible to display the Text/Image on Top
of Video using HTML's built-in property.. So, when you
develop the html pages, it will be rendered on the top of video. The video play
on the TV can be resized to any window size. It can be positioned at any
location.
Use the following API to unregister the Volume key.
Add in HTML
<script type='text/javascript'
language='javascript' src= '$MANAGER_WIDGET/Common/API/
Plugin.js'> </script>
Add in JS
var pluginAPI = new Common.API.Plugin();
pluginAPI.unregistKey(tvKey.KEY_VOL_UP);
pluginAPI.unregistKey(tvKey.KEY_VOL_DOWN);
pluginAPI.unregistKey(tvKey.KEY_MUTE);
It will give you the default OSD for volume.
Answer:
SSSP 1.0 - only one resolution: 1280x720. Only video can be played with 1920x1080
SSSP 2.0 & 3.0 - H.Browser mode: 1280x720, Native App mode: 960x540, 1280x720, 1920x1080, 1080x1920(need config setting & menu osd)
Refer the below example-
Add
in HTML file- <script type='text/javascript' language='javascript' src='$MANAGER_WIDGET/Common/API/Plugin.js'></script>
Add in JS file-
var pluginAPI = new Common.API.Plugin(); pluginAPI.unregistKey(tvKey.KEY_VOL_UP); pluginAPI.unregistKey(tvKey.KEY_VOL_DOWN); pluginAPI.unregistKey(tvKey.KEY_MUTE); |
It will give you the default OSD for volume.