
Custom Skin
Hello.
I have downloaded the JW Player Skin SDK, and I am trying to simply use one of the skins on my player. I have uploaded the file labeled six.xml into a six folder. In that six folder, I have the appropriate folders created - controller, display, dock, playlist, and tooltip.
However, when I try to run the video, I get the following error:
Error loading skin: Incompatible player version.
I am using JW Player version 6. Here is the code and the link:
http://eclasses.nisd.net/osd/videos/test6/rtmp_single.php
jwplayer("myElement").setup({
playlist: [{
image: "star_trek.png",
title: "Star Trek",
fallback: 'true',
sources: [{
file: "rtmp://electra.nisd.net/vod/mp4:QL/Elem/quantum_elem.mp4",
},{
file: "http://electra.nisd.net/vod/QL/Elem/quantum_elem.mp4"
}],
/* captions: [{
file: "http://eclasses.nisd.net/videos/test6/FunkyX_caption.srt",
label: "English",
state: "true"
}],*/
}],
autostart: 'true',
primary: 'flash',
displaytitle: 'true',
/* width: '720',
height: '420',*/
controls: 'true',
stretching: 'fill',
aspectratio: "16:9",
skin: "six/six.xml"
});
I know it's probably some simple fix, but I'm not seeing where the break is. Thanks.