Subtitle
Subtitle (Text Overlay Track)
Timed text displayed over video that provides dialogue, narration, or descriptive captions, either embedded within the video container file or provided as a separate text file.
ๆ่ก็่ฉณ็ดฐ
Subtitle formats include SRT (SubRip, plain text with timestamps, most widely supported), VTT (WebVTT, HTML5 standard with styling support via CSS), ASS/SSA (Advanced SubStation Alpha, rich formatting and positioning for anime fansubs), and PGS (Presentation Graphic Stream, bitmap-based subtitles in Blu-ray). The HTML
ไพ
```html <!-- Subtitle: HTML5 video with format fallback --> <video controls preload="metadata"> <source src="video.webm" type="video/webm; codecs=vp9,opus"> <source src="video.mp4" type="video/mp4"> Your browser does not support HTML5 video. </video> ```