需要知道以下服务的作用。
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的其他可用方法。
最佳答案
我们已成功使用此方法在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.
关于javascript - LG WebOS 3.0 TV App中的媒体Luna服务,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52955686/