
JWPlayer 6 plugin support?
Hi! I have wrote a js user interface plugin for jwPlayer5 to be able to use my own controls if I need to, and this plugin implements a lot of logic.
But when I moved to jwPlayer 6, I have discovered that the plugin is not being called at all, looks like the plugin support was dropped in jwp6..
Is it true?
The code I use to call the player looks like
bc.. jwplayer("splayer-container").setup(
{
file: "/plugin/player/test.mp4",
controls: false,
width: 640,
height: 480,
plugins:
{
'/plugin/player/splayer.js':
{
attachTo : "#splayer-container",
controls: ['stop', 'play'],
buttonsTitle:
{
play: 'Play',
stop: 'Stop',
pause: 'Pause',
prev: 'Prev',
next: 'Next',
mute: 'Mute',
unmute: 'Unmute'
},
showMute: true,
showVolumebar: true,
defaultVolume: 50,
}
}
});