我正在寻找一种将隐藏式字幕添加到仅HTML音频标签的方法。我当前正在使用<track>
标记,但是它不提供标题框。
<div id="audioCenter">
<audio controls>
<source src="~/Training/Compliance/ar/10165676.mp3" type="audio/mpeg">
<track kind="captions" label="English SubTitles" src="~/Training/Compliance/ar/10165676.mp3" srclang="en" />
Your browser does not support the audio element.
</audio>
<p style="color:white">This Section Has been Selected from Lesson 1 section 1 to allow the Test Taker to sample the audio</p>
</div>
最佳答案
<track>
元素src
应该指向.vtt
文件,而不是.mp3
。另请参见this Answer的Alternative for checking browser idle
关于javascript - 在HTML音频标签中创建隐藏式字幕,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41047634/