I am attempting to integrate JW Player 7 in my website (self hosting) which is running on the Joomla 2.5 platform. I have uploaded the unzipped contents of the jwplayer-7.7.1 download to a folder on my site, "public_html/tmp/jwplayer" I am able to publish videos (although I have yet to figure out how to change skins or do any other customization). My present issue is that I cannot stop autostart/auto play. I have tried in the code that I use in the article to do this by changing the instruction Autostart to "false" and also to "0", but neither works. Here is a typical code I use to publish videos:
Please provide any help to stop autostart. This is a particular problem is we choose to publish multiple videos in the same article. Also, this code is placed in the template CSS:
var playerInstance = jwplayer("myElement");
playerInstance.setup({
file: "/uploads/myVideo.mp4",
width: 575,
height: 323,
autostart: false,
mute: true //optional, but recommended
});
↧