contents go
  • OSD and Graphics
    Is it possible to display overlapped Text?

    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.

  • OSD and Graphics
    How to display the OSD for Volume keys?

    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.

  • OSD and Graphics
    What are the supported resolutions for Apps?

    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)

  • OSD and Graphics
    How to display default OSD for Volume?

    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.


위로가기