Example
Example
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<title>Video Subtitles</title>
5
</head>
6
<body>
7
8
<h2>Subtitled Tutorial</h2>
9
<video controls width="640">
10
<source src="tutorial.mp4" type="video/mp4">
11
<track src="captions_en.vtt" kind="subtitles" srclang="en" label="English" default>
12
<track src="captions_hi.vtt" kind="subtitles" srclang="hi" label="Hindi">
13
</video>
14
15
</body>
16
</html>
