视频播放器不在三星智能电视上工作

时间:2017-10-03 10:41:13

标签: javascript html samsung-smart-tv

在这里,我使用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");

}

0 个答案:

没有答案