I am trying to integrate multiple closed captioning in JWPlayer but it is not supporting in Google chrome. I want support in Chrome, Safari and Firefox.
jwplayer('player1').setup({
file: 'file URL',
image: 'thumbnail URL',
autostart: true,
controls: true,
tracks: [{
file: "https://s3.ap-south-1.amazonaws.com/upload-temp-dev/en-caption.vtt",
label: "English",
kind: "captions",
"default": true,
},{
file: "https://s3.ap-south-1.amazonaws.com/upload-temp-dev/fr-caption.vtt",
kind: "captions",
label: "French",
}, {
file: "https://s3.ap-south-1.amazonaws.com/upload-temp-dev/sp-caption.vtt",
kind: "captions",
label: "Spanish",
}],
});
Closed Captioning button is coming in JWPlayer but the popup for choosing different language is not coming in Chrome.
↧