Closed caption track not working in all browsers

716 Views Asked by At

I was testing a basic track html page from my desktop, and it seems that that the closed captioning works in Firefox and IE, but not Edge or Chrome. Edge shows the CC button and that it's running, but doesn't display any text, while Chrome doesn't even show CC button for me. From a website, they all work except Edge again. Ideas?

HTML:

<!DOCTYPE html> 
<html> 
<head> 
  <title>CC Track Test</title>
</head> 
<body> 

<video controls src="movie.mp4">
  <track default kind="subtitles" label="caption" srclang="en" src="entrack.vtt" />
Sorry, your browser doesn't support embedded videos.
</video>

</body> 
</html>

VTT:

WEBVTT

0
00:00:02.000 --> 00:00:14.000
This is a test caption.

1
00:00:18.700 --> 00:00:28.500
And this is a second test caption.
0

There are 0 best solutions below