
Closed Caption not working on Wordpress even with Javascript
Is there any way to add subtitle with wordpress plugin?
i tried this :
[jwplayer file="URL.MP4" image="URL.PNG" plugins="captions" captions.file="URL.srt"]
Result : Player didnt show
then i tried with java script :
<div id='playerPmZpRFgrFnMq'></div>
<script type='text/javascript'>
jwplayer('playerPmZpRFgrFnMq').setup({
file: 'URL.mp4',
image: 'URL.png',
tracks: [{
file: 'URL.vvt',
label: 'English',
kind: 'captions',
'default': true
},{ file: 'URL.srt',
label: 'Indonesia',
kind: 'captions'
}]
});
</script>
Result :
The CC button is Show, the option also show (off,English,Indonesia) but CC text is not showing.
Note :
all URL is valid
crossdomain.xml is on my root
please help...