<html>
<div id="player2">
<div id="div2" style="display: block;">
<div class="movieplay">
<iframe src="http://www.somovie.co/harry-potter-and-the-goblet-of-fire-2005.html" height="100%" width="100%"
webkitallowfullscreen="" mozallowfullscreen="" allowfullscreen="" frameborder="0" scrolling="no"></iframe>
</div>
</div>
</div>
</html>
我需要在代码中添加一个srt文件并使其与它一起运行。
答案 0 :(得分:0)
srt文件现在不能用作字幕。但是,您可以使用vtt文件。 在此转换srt文件:https://atelier.u-sub.net/srt2vtt/
<video controls preload="metadata">
<source src="vid.mp4" type="video/mp4">
<track label="English" kind="subtitles" srclang="en" src="file.vtt" default>
</video>