我找到了这个topic,但没有明显的解决方案。使用firefox,safari或chrome在我的Mac上开始使用flowplayer静音。这是我正在使用的代码,有人能指出我正确的方向吗?如果感兴趣的话,它是流动播放器3.2.16。
<script type="text/javascript">
$(document).ready(function() {
player = flowplayer("player", "/libs/flowplayer/flowplayer.swf", {
plugins: {audio: {url: '/libs/flowplayer/flowplayer.audio.swf'},controls: {url: '/libs/flowplayer/flowplayer.controls.swf'}},
clip: {autoPlay: false, autoBuffering: true}
}).ipad();
$(".rmRating").jRating({type:'big',length:5,showRateInfo:false,decimalLength:0,rateMax:5,step: true});
$('i.rex-player').on('click', function() {
var c = {url: $(this).data('url'), coverImage: {url: "<?=$item->thumb;?>",scaling: 'orig'}};
player.play(c);
});
});
</script>