Export WebVTT subtitle files for HTML5 videos, web players, and modern streaming platforms.
WebVTT (Web Video Text Tracks) is the modern subtitle format designed for web browsers and HTML5 video players. It's similar to SRT but with additional features for web.
VTT is a text file starting with "WEBVTT" header, followed by timed text entries. It's the standard format for HTML5 <video> and <audio> elements.
WEBVTT
00:00:00.000 --> 00:00:05.230
Hello everyone and welcome to today's podcast.
00:00:05.230 --> 00:00:09.450
Thank you for having me. It's great to be here.
00:00:09.450 --> 00:00:15.120
Let's dive right into the topic of AI transcription.Add VTT subtitles to your HTML5 video player:
<video controls>
<source src="video.mp4" type="video/mp4">
<track kind="subtitles" src="transcription.vtt" srclang="en" label="English">
</video>HTML5 video with VTT subtitles
/images/articles/vtt-html5-video.png
Pro Tip
VTT is the recommended format for web applications. Use SRT for traditional video editing software.
All VTT files are exported in UTF-8 encoding with full Unicode support for international languages.
WebVTT subtitles improve accessibility for:
Export SRT subtitle files compatible with Adobe Premiere, Final Cut Pro, DaVinci Resolve, and other video editors.
Learn about all available export formats and when to use each one for your needs.
Understand how timestamps work in your transcriptions and how to use them effectively.