IEにプレーヤーを埋め込む


詳細
一般的にIEに埋め込まれたプレーヤーには、ftp、httpプロトコルをサポートする、複数の再生フォーマットをサポートするなどの要求があります.以下、2つの再生をお勧めします.
1,qvod




 
function play(width,heigth,playUrl){ var StrHtml; StrHtml = '<object id="QvodPlayer" name="QvodPlayer" width="'+width+'" height="'+height+'" classid="clsid:F3D0D36F-23F8-4682-A195-74C92B03D4AF" onError="show_ad()">'; StrHtml += '<PARAM NAME="URL" VALUE="'+playURL+'">'; StrHtml += '<param name="Autoplay" value="1">'; StrHtml += '<PARAM NAME="TextAd" VALUE="">'; StrHtml += '</object>'; document.getElementById('content').innerHTML = StrHtml; }

 
 
2,vlc





function play(width,heigth,playUrl){ var itemId = 0; var vlc; if (window.document["vlc"]){ vlc = window.document["vlc"]; } if (navigator.appName.indexOf("Microsoft Internet")==-1) { if (document.embeds && document.embeds["vlc"]) vlc = document.embeds["vlc"]; } else { vlc = document.getElementById("vlc"); } itemId=vlc.playlist.add(playURL); vlc.playlist.playItem(itemId); }