Latest web development tutorials

HTML track src attribute

Tag Reference HTML track HTML <track> tag

Examples

video element with two subtitle tracks:

<video width="320" height="240" controls>
<source src="forrest_gump.mp4" type="video/mp4">
<source src="forrest_gump.ogg" type="video/ogg">
<track src="subtitles_en.vtt" kind="subtitles" srclang="en"
label="English">
<track src="subtitles_no.vtt" kind="subtitles" srclang="no"
label="Norwegian">
</video>

Browser Support

Internet ExplorerFirefoxOperaGoogle ChromeSafari

Internet Explorer 10, Opera, and Chrome support the src attribute.


Definition and Usage

src attribute specifies the url track.


Differences between HTML 4.01 and HTML5

<Track> tag HTML5 is the new label.


grammar

<track src="subtitles_en.vtt">

Property Value

描述
URL 规定轨道的 url。


Tag Reference HTML track HTML <track> tag