HTML <track> 종류 속성

❮ HTML <track> 태그

예시

두 개의 자막 트랙이 있는 비디오:

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

정의 및 사용

kind속성은 텍스트 트랙의 종류를 지정합니다 .


브라우저 지원

표의 숫자는 속성을 완전히 지원하는 첫 번째 브라우저 버전을 지정합니다.

Attribute
kind 23.0 10.0 31.0 6.0 12.1

통사론

<track src="subtitles_en.vtt" kind="subtitles" srclang="en">

속성 값

Value Description
captions The track defines translation of dialogue and sound effects (suitable for deaf users)
chapters The track defines chapter titles (suitable for navigating the media resource)
descriptions The track defines a textual description of the video content (suitable for blind users)
metadata The track defines content used by scripts. Not visible for the user
subtitles The track defines subtitles, used to display subtitles in a video

❮ HTML <track> 태그