LG WebOS 3.0 TV App中的媒体Luna服务

时间:2018-10-23 18:31:14

标签: javascript media webos lg

需要知道以下服务的作用。

luna://com.webos.media服务(注意:在Luna服务文档中不可用)

我正在寻找频道的字幕/音频中的语言更改。请指导我。

请参考以下示例。

 webOS.service.request("luna://com.webos.media", {
    method:"selectTrack",
    parameters: { "type": "audio", "index": index, "mediaId": mediaId },
      onSuccess: function (result) {
        console.log("[succes] select audio track " + index);
      },
      onFailure: function (result) {
        console.log( "[fail][" + result.errorCode + "] " + result.errorText );
        }
 });

请提及此API的其他可用方法。

1 个答案:

答案 0 :(得分:0)

我们已成功使用此方法在LG WebOS设备的字幕和音轨之间切换。

您可以参考此链接进行改进: https://sea-region.github.com/webosose/umediaserver/blob/master/src/server/uMediaserver.cpp

/**
@page com_webos_media com.webos.media
@{
@section com_webos_media_selectTrack selectTrack
Selects Track
@par Parameters
Name | Required | Type | Description
-----|--------|------|----------
mediaId  | yes | String  | media id assigned to this media.
type     | yes | String  | track type: video, audio and subtitle.
index    | yes | Integer  | track index to select.
@par Returns(Call)
Name | Required | Type | Description
-----|--------|------|----------
returnValue | yes | Boolean | true if successful, false otherwise.
errorCode   | no  | Integer | errorCode only if returnValue is false.
errorText   | no  | String  | errorText only if returnValue is false.
mediaId     | yes | String  | media id assigned to this media.