سؤال

I have found this topic but with no apparent solution. flowplayer starts muted on my Mac in firefox, safari or chrome. This is the code I'm using, can someone point me in the right direction ? It is flowplayer 3.2.16 if this is of interest.

<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>
هل كانت مفيدة؟

المحلول

The problem was the combination of autoBuffering and not having loaded a clip at all. For further details see the flowplayer forum.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top