วันอังคารที่ 28 มิถุนายน พ.ศ. 2559

HTML5 Video with SRT Subtitles

HTML:

<video controls="controls" width="320" height="176">
<source src="jellies.mp4" type="video/mp4" /><!-- WebKit -->
<source src="jellies.ogg" type="video/ogg" /><!-- Firefox / Opera -->
<track src="jellies.srt" kind="subtitle" srclang="en-US" label="English" />
Your browser does not support HTML5 video.
</video>

The raw video (.MP4)
The subtitle file (.SRT)


หรือ
<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>

แหล่งที่มา   เว็บไซต์ Thomas Sturm หรือ เว็บไซต์ W3Schools

ไม่มีความคิดเห็น:

แสดงความคิดเห็น