編集:うわー、「ファイル」と「flashplayer」の設定を最初に設定セクションに配置することで解決しました。これらの2つのパラメーターは、構成セクションの最初にある必要があると思います。
したがって、これは機能します(クロスドメインのもののため、このようにlongtailvideo.comからファイルをロードすることはできません。テストするには、独自のローカルファイルを使用してください)
<!DOCTYPE html>
<html lang="en">
<head>
<script type="text/javascript" src="jwplayer.js"></script>
</head>
<body>
<div id="vs" style="width:300px;height:250px;"></div>
<a href="javascript:void(0);" onclick="jwplayer().setMute();">Toggle the audio</a>
</body>
</html>
<script type="text/javascript">
jwplayer("vs").setup({
file: "http://content.longtailvideo.com/videos/flvplayer.flv",
flashplayer: "player.swf",
autostart:true,
controlbar: "none",
icons: "false",
repeat:"always",
stretching:"exactfit",
width:300,
height:250,
mute:"true"
});
</script>
ミュートトグルを機能させることができません。ロングテールのドキュメント(http://www.longtailvideo.com/support/jw-player/jw-player-for-flash-v5/16022/controlling-the-player-using-javascript)によると、私がしなければならないのは作ることだけですオンクリックのリンク。動作しません。JQueryで.clickを試しても無駄になりました。MP4ファイルを使用して、コードをフラッシュからHTML5ビデオにフォールバックします。
これは、ページに含まれているJQueryでも機能しません
<script type="text/javascript">
$(document).ready(function(){
$('#mutetoggle').click(function(){
jwplayer().setMute();
});
});
</script>
埋め込み用のJWjavascriptを備えたJWプレーヤー:
<!DOCTYPE html>
<html lang="en">
<head>
<script type="text/javascript" src="jwplayer.js"></script>
</head>
<body>
<div id="vs" style="width:300px;height:250px;"></div>
<a href="#" id="mutetoggle" onclick="jwplayer().setMute();">Toggle the audio</a>
</body>
</html>
<script type="text/javascript">
jwplayer("vs").setup({
autostart:true,
controlbar: "none",
icons: "false",
repeat:"always",
stretching:"exactfit",
file: "http://content.longtailvideo.com/videos/flvplayer.flv",
flashplayer: "player.swf",
volume:50,
width:300,
height:250,
mute:"true"
});
</script>