$("#jquery_jplayer_1").jPlayer( {
ready: function () {
jQuery(this).jPlayer("setMedia", {
m4v: url, // Defines the m4v url
}).jPlayer("play"); // Attempts to Auto-Play the media
},
volume: 0.5,
wmode:"window",
swfPath: "js/libs/plugins/jQuery.jPlayer.2.1.0/Jplayer.swf",
supplied: "m4v",
});
I am able to play all video except .flv .Can anyone sugget me something based on this
Your code doesn't show an .flv. How have you configured "setMedia" and "supplied" to handle .flv files.
Is it possible for you to configure an error handler in jPlayer to determine the error reason:
error: function(e) {
alert( e.jPlayer.error.type );
}