2

私は、同じページに jPlayer の多くのインスタンス (90) がある音楽コンテスト サイトに取り組んでいます。プレーヤーは機能しますが、残念ながら、曲をロードして再生する前に 5 秒から 30 秒待たなければなりません。

これは、各プレーヤーの jQuery コードです。

$("#jquery_jplayer_2").jPlayer({
    ready: function () {
        $(this).jPlayer("setMedia", {
            m4a: "url/contest/sounds/radioacoustik-rita.m4a",
            ogg: "url/contest/sounds/radioacoustik-rita.ogg"
        });
    },
    play: function() { // To avoid both jPlayers playing together.
        $(this).jPlayer("pauseOthers");
    },

    swfPath: "url/contest/js/Jplayer.swf",
    supplied: "m4a, ogg",
    solution: "html, flash",
            preload: 'metadata',
    cssSelectorAncestor: "#jp_container_2",  
    wmode: "window"
});

このコードを単純化して、すべての曲をより速くロードできるようにする方法はありますか?

編集

わかりましたので、いくつかのパラメーターを変数に渡すことでコードを簡素化しようとします:

 $(document).ready(function(){   

 $(".lecteur").each(function(i){
            var lecteurNum = $(this).addClass("" + (i+1));
  }); //loop through audio and assign a unique class for each

var wrapPlayer = $(".wrap-player"); 
    var classLecteur = wrapPlayer.parent().attr('class').split(' ')[1];
var newPlayerId = "jquery_jplayer_" + classLecteur; // create id jquery_player
var jpContainerId = "#jp_container_" + classLecteur; // create id for jp-container
var songPath = wrapPlayer.attr("rel"); // get url of current sound 

$("#" +  newPlayerId).jPlayer({
            ready: function () {
                    $(this).jPlayer("setMedia", {
            m4a: "http://www.url.com/" + songPath + ".m4a",
                    oga: "http://www.url.com/" + songPath  + ".ogg",
                    });
            },
            play: function() { // To avoid both jPlayers playing together.
    $(this).jPlayer("pauseOthers");
},


          swfPath: "http://www.url.com/contest/js/Jplayer.swf",
    solution: "html, flash",
    supplied: "m4a, oga",
    cssSelectorAncestor: "",
    wmode: "window"

}); 

});

動作しているように見えますが、すべてのインスタンスが同じトラック (最初のトラック) を一緒に再生します。解決策はありますか?

4

1 に答える 1

0

わかりました私は問題を解決しました、この機能は動作します:

HTML /

<div class="lecteur">
    <!--PLAYER #1-->
    <div class="wrap-player" rel="contest/sounds/lord-fauttafer">
           <div id="jquery_jplayer_<?php echo $player_id1; ?>" class="jp-jplayer"></div>
                <div id="jp_container_<?php echo $player_id1; ?>" class="jp-audio">
                    <div class="jp-type-single">
                        <div class="jp-gui jp-interface">
                            <!--section title - volume bar -->
                                <div class="wrap-volume-bar-title">
                                    <div class="jp-title">
                                        <ul>
                                            <li><?php echo $title_sound_1; ?></li>
                                        </ul>
                                    </div>
                                    <div class="wrap-volume-bar">
                                        <div class="jp-volume-bar">
                                            <div class="jp-volume-bar-value"></div>
                                        </div>
                                    </div>
                                </div>
                                <!--section controllers -->
                                <ul class="jp-controls">
                                    <li><a href="javascript:;" class="jp-play" tabindex="1">play</a></li>
                                    <li><a href="javascript:;" class="jp-pause" tabindex="1">pause</a></li>
                                    <li><a href="javascript:;" class="jp-stop" tabindex="1">stop</a></li>
                                    <li><a href="javascript:;" class="jp-mute" tabindex="1" title="mute">mute</a></li>
                                    <li><a href="javascript:;" class="jp-unmute" tabindex="1" title="unmute">unmute</a></li>
                                    <li style="display:none"><a href="javascript:;" class="jp-volume-max" tabindex="1" title="max volume">max volume</a></li>
                                </ul>
                                <!--section ptogress bar -->
                                <div class="jp-progress">
                                    <div class="jp-seek-bar">
                                        <div class="jp-play-bar"> </div>
                                    </div>
                                    <div class="jp-current-time"></div>
                                    <div class="jp-duration"></div>
                                </div>
                               <div class="wrap-time-duration"></div>
                       </div>
                       <!-- end jp-UI--> 
                       <div class="jp-no-solution">
                           <span>Mise à jour requise</span>
                          Vous devez mettre à jour votre navigateur en téléchargeant la dernière version de falsh player <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash plugin</a>.
                       </div>
                   </div>
               </div>
               <!-- end player1-->  
      </div>
      </div>

そしてJavaScript:

$(document).ready(function(){

$(".lecteur").each(function(i){
            var vidNum = $(this).addClass("" + (i+1));
}); //loop and assign a unique class for each



$(".lecteur").each(function(){
    var wrapPlayer = $(".wrap-player"); 
    var classLecteur = $(this).attr('class').split(' ')[1]; //get the class number of current lecteur
    var newPlayerId = "jquery_jplayer_" + classLecteur; // create id jquery_player
    var songPath = $(this).find(".wrap-player").attr("rel"); // get url of current sound 

    $("#" +  newPlayerId).jPlayer({
            ready: function () {
                    $(this).jPlayer("setMedia", {
                            m4a: "http://url/" + songPath + ".m4a",
                            oga: "http://url/" + songPath  + ".ogg",
                    });
            },
            play: function() { // To avoid both jPlayers playing together.
    $(this).jPlayer("pauseOthers");
},


    swfPath: "http://url/contest/js/Jplayer.swf",
    solution: "html, flash",
    supplied: "m4a, oga",
    cssSelectorAncestor: "#jp_container_" + classLecteur,
    wmode: "window"

}); 

}); 


}); 
于 2012-08-08T15:44:21.457 に答える