I designed a sample web application in which i used the video tag like this:
<video src="test.mp4" width="320" height="240" controls="controls">
<track kind="subtitles" src="test.srt" srclang="en" type="text/vtt">
</video>
When i tested this out on iPhone5 with iOS7, on selecting English from Closed captioning menu in the video player, no subtitles showed up. Am i doing it the wrong way?
What is the correct way of showing subtitles on the video? I couldn't find anything from iOS Developer Library. So, thought of putting this up.