0
我使用YouTube播放器API來播放我的應用程序的YouTube視頻。Youtube API不在電視揚聲器上播放音樂
已通過使用HDMI電纜連接我的Tab與電視測試了我的應用程序。
錯誤:
當我從我的應用程序運行視頻,音樂時在平板揚聲器
起當我運行相同的視頻在youtube.com它電視揚聲器播放
Youtube api不是在電視揚聲器上播放音樂,而是在標籤揚聲器中播放。
我的代碼:
this.player = new YT.Player('youtube-player', {
height: this.videoHeight,
width: this.videoWidth,
videoId: videoId,
playerVars: {
autoplay: 1,
controls: 0,
fs:0,
rel : 0
},
origin: this.getHostName(),
events: {
onReady: function() {
// Code Goes Here
},
onStateChange: function (event) {
// Code Goes Here
},
onError: function() {
// Code Goes Here
}
}
});
對此我下面Docs。
這種情況與最新版本的Chrome和Chrome測試版
誰能解釋會是什麼問題?
對不起,我的英語不好。
請顯示您編寫的一些代碼,並提供您正在使用的youtube api文檔的鏈接。 – creimers
@creimers用我的代碼和文檔更新了我的問題,我正在關注。 –
所以你只能用chrome試試它?嘗試使用其他瀏覽器並觀察結果。我認爲這不是Youtube API的問題。 – KENdi