$("#jquery_jplayer_1").jPlayer({
ready: function () {
$(this).jPlayer("setMedia", {
mpeg: "pages/mp3/JAM.mpeg",
oga: "pages/mp3/JAM.ogg",
mp3: "pages/mp3/JAM.mp3"
}).jPlayer("play");
},
ended: function (event) {
$("#jquery_jplayer_2").jPlayer("play", 0);
},
swfPath: "js",
supplied: "mpeg, oga, mp3"
})
.bind($.jPlayer.event.play, function() {
$(this).jPlayer("pauseOthers");
});
(initially it didn't work on Safari either until i added also the MP3 format version)
Please can somebody help me find whats wrong??
Thank you!
:-)
$("#jquery_jplayer_1").jPlayer({
ready: function () {
$(this).jPlayer("setMedia", {
audio/ogg: "pages/mp3/JAM.ogg",
mp3: "pages/mp3/JAM.mp3"
}).jPlayer("play");
},
ended: function (event) {
$("#jquery_jplayer_2").jPlayer("play", 0);
},
swfPath: "js",
supplied: " ogg, mp3"
})
.bind($.jPlayer.event.play, function() {
$(this).jPlayer("pauseOthers");
});
it gets highlighted as an error and doesnt work on chrome, safari or firefox.....
sorry if im bothering you... but i cant figure it out
Thanks,
Rhianne
oga: "pages/mp3/JAM.ogg",The MIME type is the content type given in the server response when a browser makes a request. For a HTML webpage, this is usually "text/html". A GIF image is "image/gif". The mime type is important and is the reason why when you access a GIF file directly, the browser knows it is a GIF image. Likewise for many other file formats the mime is important, like PDF to open the Adobe reader in the browser.
supplied: " oga, mp3"

jPlayer has different defaults for audio and video. This is determined from the supplied formats. Only audio formats, then the size is zero. Video or both, then the size is 480x270.
The notes are added to the current docs:
http://jplayer.org/latest/developer-guide/#jPlayer-option-size
Now you mention it... I think there might be a bug on OSX Safari where the image does not get displayed again. So few people use the audio poster image, that it may well still be an issue that has been overlooked.
As for the big gap. There is a CSS issue somewhere. Can't find it myself... But if you remove that text under the playlist, then it gets even bigger.
As for the big gap. There is a CSS issue somewhere. Can't find it myself... But if you remove that text under the playlist, then it gets even bigger.
--
You received this message because you are subscribed to the Google Groups "jPlayer: HTML5 Audio & Video for jQuery" group.
To view this discussion on the web visit https://groups.google.com/d/msg/jplayer/-/VfWIodOJX_gJ.
To post to this group, send email to jpl...@googlegroups.com.
To unsubscribe from this group, send email to jplayer+u...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/jplayer?hl=en.
Mark...was that aimed at me? http://www.rhythmshop.com/TEST3radmusic_library.html
Changing the blue.monday css to the above breaks the controls part on Safari OS X! I'm sort of fine as it was actually except wonder why I need the first in the media list to be a movie file (bunny, at the mo) if I want later poster frames to show on the mp3s?