在这里,我使用TV SDK 5.1为三星智能电视创建了一个示例应用程序.Thsi cide在5.1模拟器上运行良好。并且不在实际设备上播放视频。是否有任何额外的代码需要这个工作在实际设备?
Main.onLoad = function()
{
plugin = document.getElementById("plugin");
plugin.Open('Player', '1.112', 'Player');
plugin.Execute("InitPlayer", "https://www.w3schools.com/html/mov_bbb.mp4");
plugin.Execute("SetDisplayArea", 10, 10, 100, 100);
plugin.Execute("SetInitialBufferSize", 400*1024);
plugin.Execute("StartPlayback");
console.log("Main.onload end");
}