在三星智能电视上播放声音

时间:2012-04-04 07:20:25

标签: javascript samsung-smart-tv

我正在为三星智能电视开发一款简单的游戏。当某些事情发生时,我想播放一些声音文件,如准备好,赢,输。我不想处理flash播放器,播放器控件..有没有办法使用javascript触发具有预定义音量的播放声音动作,并且我想在我的代码中多次这样做。

3 个答案:

答案 0 :(得分:8)

您需要将玩家对象(SAMSUNG-INFOLINK-PLAYER)添加到<body>标记中:

<object id="pluginPlayer" style="visibility: hidden; width: 0px; height: 0px; opacity: 0.0" classid="clsid:SAMSUNG-INFOLINK-PLAYER"></object>

然后在应用程序的javascript中使用此功能:

var playerObj = document.getElementById('pluginPlayer');
playerObj.Play("absolute_url_to_your_mp3");

由于播放器插件在三星文件系统内的不同位置执行,因此您需要始终使用文件的绝对路径。它可以是远程的,但您可以使用应用程序location.href的{​​{1}}获取应用程序工作目录的绝对本地路径,您可以在其中放置mp3。

查看文档,此处:

http://www.samsungdforum.com/Guide/View/Developer_Documentation/Samsung_SmartTV_Developer_Documentation_2.5/API_Reference/JavaScript_APIs/Device_API/Player

答案 1 :(得分:5)

这是我的解决方案:

添加 index.html 文件

<body>
    <object id="pluginPlayer" border=0    classid="clsid:SAMSUNG-INFOLINK-PLAYER">
...
...
...
</body>

在我的.js文件 Scene1.js

SceneScene1.prototype.initialize = function () {
var Player = document.getElementById('pluginPlayer');
var retVal=Player.Play("http://mysite.com/android/smartTV/little_wing.mp3");
...
...
...
}   

答案 2 :(得分:1)

我使用SDK版本5.1用于TV 2013和2014年型号,我有以下代码:

<object id="pluginPlayer" classid="clsid:SAMSUNG-INFOLINK-PLAYER"></object>

var playerObj = document.getElementById('pluginPlayer');
var fileName = location.pathname.substring(location.pathname.lastIndexOf("/") + 1);
playerObj.Play(document.location.href.split(fileName)[0] + 'test.mp3');

这个替代方案也有效(使用Flash):

<div style="position:absolute; z-index:-1;">
    <object type="application/x-shockwave-flash" width="100" height="50" id="fplayer">
        <param name="movie" value="test.swf"/>
        <param name="quality" value="high"/>
        <param name="bgcolor" value="blue"/>
    </object>
</div>

非常感谢Dobiatowski!