<track kind="chapters"> 的真实例子
real example for <track kind="chapters">
谁能告诉我真实的例子,当在“track”元素中使用“chapter”值时。如果可以,请帮助我。
我在我的服务器上尝试了这个例子,但没有显示任何结果`
<body>
<video width= "500" height= "400" controls>
<source src= "html-lesson.mp4" type= "video/mp4">
<track src="html-lesson-hy.vtt" kind= "chapters" srclang= "hy" label= "Armenian">
<track src="html-lesson-en.vtt" kind= "chapters" srclang= "en" label= "English" default>
</video>
请使用 kind="chapters"
而不是 chapter
。您可以使用此 link 了解更多信息。 https://www.w3schools.com/tags/tag_track.asp
有两个非常好的学习现代的资源HTML:
- MDN,其中有 a page about the
track
element.
- "HTML Living Standard", which goes into a lot of detail, but can give insight into how certain features work. MDN links directly to the standard's description of the
track
element.
由此,我们可以了解到两件事:
- 首先,“kind”属性的有效值为“chapters”,而不是“chapter”。
- 其次,该标准将此曲目类型描述为“章节元数据”,并指出它是“旨在用于脚本的曲目。用户代理不显示。”
所以,您需要更正您的HTML,然后再编写一些额外的脚本来利用章节数据。
谁能告诉我真实的例子,当在“track”元素中使用“chapter”值时。如果可以,请帮助我。
我在我的服务器上尝试了这个例子,但没有显示任何结果`
<body>
<video width= "500" height= "400" controls>
<source src= "html-lesson.mp4" type= "video/mp4">
<track src="html-lesson-hy.vtt" kind= "chapters" srclang= "hy" label= "Armenian">
<track src="html-lesson-en.vtt" kind= "chapters" srclang= "en" label= "English" default>
</video>
请使用 kind="chapters"
而不是 chapter
。您可以使用此 link 了解更多信息。 https://www.w3schools.com/tags/tag_track.asp
有两个非常好的学习现代的资源HTML:
- MDN,其中有 a page about the
track
element. - "HTML Living Standard", which goes into a lot of detail, but can give insight into how certain features work. MDN links directly to the standard's description of the
track
element.
由此,我们可以了解到两件事:
- 首先,“kind”属性的有效值为“chapters”,而不是“chapter”。
- 其次,该标准将此曲目类型描述为“章节元数据”,并指出它是“旨在用于脚本的曲目。用户代理不显示。”
所以,您需要更正您的HTML,然后再编写一些额外的脚本来利用章节数据。