menu language

per HDSpecs, the menu language is very important for application active. we can get it through Player object, but i do not know how to change it.

any idea is appreciated!

thanks

chang



Answer this question

menu language

  • joeydj

    Hi,
    According to the new spec (Aug 2005), the SPRM value cannot be accessed by the advance content.
    Menu is also a markup page in an application. Every application has a language attribute. The application of a particular language gets selected based on the language of the player (menu language) or the default language specified in the TitleSet element. Please refer to specs section 6.2.3.9.



  • Sondre - MSFT Regional Director

    You can get the player menu language through

    Player.standardContentPlayer.getSPRM( index ) where index is 0

    so, you should be able to set it through

    Player.standardContentPlayer.setSPRM( index, value) where index is 0 and value is your language code represented as an unsigned int

    (see Z.10.30.2 in the spec)


  • menu language