I'm trying to use the JPlayer (http://www.happyworm.com/jquery/jplayer/) jQuery plugin and having some trouble using it when it falls back to the Flash SWF. In that case I hit an error m.fl_play_mp3 is undefined which I've traced back to possibly a problem with the path to the SWF file. However, I've put the full path to the SWF direct...
Hello,
I would like to create a javascript playlist with Jplayer. This is a nice and easy tool, however I never coded with javascript.
Look at the javascript used in this demo. It uses a list to store MP3 and Ogg files :
var myPlayList = [
{name:"Tempered Song",mp3:"http://www.miaowmusic.com/mp3/Miaow-01-Tempered-song.mp3",ogg:"ht...
Hello,
I tried to set up a playlist with jPlayer, like this demo shows.
You can find my code here.
I've checked the playList var, everything is okay (it contains all mp3 URLs for each <article> element which represents a track).
The swfPath to jPlayer.swf is correct too.
So I really don't understand where is the problem ? Any idea ?...
when i initialize the player like this:
$("#jquery_jplayer").jPlayer({
ready: function () {
this.element.jPlayer("setFile", "/previews/cancion.mp3", "/previews/horse.ogg").jPlayer("play");
},
volume: 50,
oggSupport: true
})
is there any way to disable the autoplay?
...
I need to stop all other instances of jPlayer before playing a new one when i click play.
Thanks for you help.
...
I'm having some issues with the JPlayer widget.
I'm using JPlayer 1.1.1 with Firefox 3.6.4 and I'm testing this locally on my laptop. I'm all setup to use local domains i.e. http://mylocaldomain, etc.
I have JPlayer in a folder under htdocs called myfolder that I access by going to http://myfolder. I have a test script setup just like ...
I have just set up Jplayer and it is working on chrome, but not on ie or firefox. I set up the demo first and it worked on all three browsers.
I suspect it has something to do with the swf player, but I have no idea what is wrong.
EDIT: Found out what was happening. In the Jplayer js, the swfpath was relative ("js/swfpath"), I changed ...
OK, so I have this pretty cool Mario-themed media player, created by the customization of the immensely powerful jQuery plugin, jplayer.
So, I would like to give the option to the user to choose whether he or she would like to have auto-starting music play in the background of the website.
I have it off by default, as this is supposed ...
I'm using the jQuery audio player 'jPlayer', I have a loop which creates a number of jPlayer unique instances then assigns an on click 'jPlayer play' to another part of the document for each instance.. The problem is jPlayer uses an internal ready: function() {} to assign the audio path and load the file.. I need to wait for this functio...