In the HTML media playback sample there's a code that demonstrates how to add subtitles to the video:
<video id="subtitleVideo" style="position: relative; z-index: auto; width: 50%;"
src="http://ie.microsoft.com/testdrive/Videos/BehindIE9AllAroundFast/Video.mp4"
poster="images/Win8MediaLogo.png" loop controls>
<track id="scenario3entrack" src="media/sample-subtitle-en.vtt" kind="subtitles"
srclang="en" default>
</video>
It works fine, but when I change subtitle track src to src="http://gilevskaya.com/subs.vtt"
, subtitles stop working.
The file being served is the same, why doesn't it work and how to fix it?