Captions
The caption does not work, I tried:
jwplayer("mediaplayer").setup({
file: "../Video/when.mp4",
image: "../Content/images/when.png",
tracks: [{
file: "/Video/when.srt"
}]
,
captions: {
color: '#FF0000',
fontSize: 24,
backgroundOpacity: 50
}
});
and also tried:
jwplayer("mediaplayer").setup({
playlist: [{
file: "../Video/when.mp4",
image: "../Content/images/when.png",
tracks: [{
file: '../Video/when.vtt',
label: "English",
kind: "captions",
"default": true
},{
file: '../Video/when.srt',
kind: "captions",
label: "French"
}]
}]
});