jplayer / jPlayer

jPlayer : HTML5 Audio & Video for jQuery
http://jplayer.org/
Other
4.6k stars 1.47k forks source link

FLV repeated bug #344

Open davinma opened 8 years ago

davinma commented 8 years ago

This is my code:

$("#jquery_jplayer_1").jPlayer({
      ready: function() {
        $(this).jPlayer("setMedia", {
          title: "mytitle",
          flv: "myvideo.flv"
        }).jPlayer("play");
      },
      ended: function() {
        $(this).jPlayer("play");
      },
      swfPath: "mypath",
      supplied: "flv",
      size: {
        width: 760,
        height: 612,
        cssClass: "jp-video"
      },
 });

When run in the browsers, the video repeated several times, then stoped, sometimes stucked when playing. But mp4 file is smooth, is it a bug?