Display web sites and web apps with Chromecast

后端 未结 5 1661
没有蜡笔的小新
没有蜡笔的小新 2020-12-07 23:20

Can Chromecast be used to display a web site or web app? All the sample sender/receivers I\'ve seen so far show how to play videos. The docs posted so far are minimal as bes

5条回答
  •  感情败类
    2020-12-07 23:54

    I was able to modify the Github sample Project > googlecast/CastHelloText-chrome to show a web page.

    • In the receiver.html file, I replaced the DIV with an IFRAME and styled it for 100% width and height.
    • Then in the displayText() function I changed innerHTML to src.
    • The only modification made to the sender chromehellotext.html was to replace YOUR_APPLICATION_ID with the app id created by registering the receiver.

    Note that some sites like Google and Yahoo will not display inside an iframe. If you really needed to do that you could skip the iframe and just set window.location.href to the URL. That, of course, will overwrite your receiver code so the only way to change URLs would be to manually disconnect first and reload. I tried using window.open instead but that did not work.

提交回复
热议问题