Jplayer播放延迟

时间:2014-01-08 06:56:14

标签: jquery html jplayer

这是我的jplayer代码。问题是它在 Chrome,Opera,Firefox 中运行良好,但在桌面上的 Safari浏览器中浏览时,播放会有一些延迟。我不知道为什么会这样。请给我任何帮助或建议。

HTML:

<div id="#jpId1"></div>

JavaScript的:

$("#jpId1").jPlayer({
     ready: function () { // The $.jPlayer.event.ready event
        $(this).jPlayer("setMedia", { // Set the media
            wav: "sound/sound1.wav",
        }).jPlayer("stop"); // Attempt to auto play the media
    },
        ended: function () { // The $.jPlayer.event.ended event
            $(this).jPlayer("play"); // Repeat the media
        },
        supplied: "wav"
    }
);

1 个答案:

答案 0 :(得分:1)

如果选择jPlayer,延迟将保持不变。替代选项是Web Api。您可以使用Web Api来避免延迟 链接在这里: Web Api