Samsung スマート TV 用の Javascript ベースのアプリに YT プレーヤーを実装しようとしています。問題は、使用したいビデオが無音で速く再生されることです。理由がわかる方いますか??
ここで私が使用しているコード (ビデオは .mp4 形式でエンコードされていますhttp://www.youtube.com/watch?v=l4uSJ-LpkwY ):
var player=false;
function onYouTubePlayerReady(playerId) {
player = document.getElementById(playerId);
Player.init();
// Player.setWindow();
}
var Player = {};
Player.init = function(){
this.playVideo("l4uSJ-LpkwY");
this.setWindow();
}
Player.setWindow = function(){
document.getElementById('ytplayer').style.width = "450px";
document.getElementById('ytplayer').style.height = "450px";
document.getElementById('ytplayer').setSize(450,450);
}
Player.setFull = function(){
document.getElementById('ytplayer').style.width = "960px";
document.getElementById('ytplayer').style.height = "540px";
document.getElementById('ytplayer').setSize(960,540);
}
Player.onStateChange = function(state){
}
Player.playVideo = function(url){
player.loadVideoById(url);
}
Player.stopVideo = function(){
player.stopVideo();
}
Player.pauseVideo = function(){
player.pauseVideo();
}
敬具、ジェレミー D.