DEV Community

Cover image for Get Started with HTML Video Captions
Ashlee (she/her)
Ashlee (she/her)

Posted on • Updated on

Get Started with HTML Video Captions

Did you know you can add captions to <video> elements with a little HTML and a VTT file? I didn't know until today! It's really easy to do (so long as you format your VTT file correctly... shout out to Conlin Durbin for helping me find that error 😄). At a minimum, you need 3 files:

  1. Video, probably .mp4
  2. WebVTT, where the captions are
  3. HTML

Let's get started

The HTML

This is the easiest step. You only need 3 elements. On the <video> element, make you sure you include the controls attribute. This will allow users to toggle captions or switch to a different langue, if applicable.

The <source> element should be your video. Specify its src and type attributes. The <track> element is for the .vtt file you'll create in the next step. There are multiple attributes to include here.

  • kind defaults to "subtitles", but if you specify it you must also include the srclang attribute.
  • label is the title of the track and will be displayed in the video controls menu where captions can be toggled.
  • default is included to set a track as enabled.

WebVTT

The format for this file is very specific. You must include "WEBVTT" at the top of the file, and then there are sections with white space in between which are called "cues". In the example file I've attached above, the first line of each cue is called the identifier. The next line specifies the timing for the cue. Finally, we have the cue payload. This is where you include the content for each caption. You can do some styling here.

The final product

The cover image has a quick preview of the captions I added to a video of a puppy playing on a sandy beach. Here's a GIF of the whole thing. You can also see my little project live here.

More resources

I wasn't able to find a ton of examples out there, but there are plenty of resources that get into the differences between subtitles and captions, styling abilities, and additional ways to accomplish the same thing as above but with different transcript formats or third-party libraries.

If you have experience with captions that you'd like to share, or know of even more helpful resources, please do so in the comments! 😊


Did you know I have a newsletter? 📬

If you want to get notified when I publish new blog posts or make major project announcements, head over to https://ashleemboyer.com/newsletter.

Top comments (4)

Collapse
 
rentecjeremy profile image
Jeremy Smith

Great post! Thank you for sharing 😄

WebVTT is pretty awesome.
I had been working with a client who was embedding captions into their videos and was pretty excited when I showed them webVTT.

One of the things that we needed to do was differente between two different speakers. WebVTT has support for that. As well as positioning the captions in different areas of the screen.

00:00:21.150 --> 00:00:30.000 line:13 position: 20% align:middle size:100%
<v Nancy> Let's talk about WebVTT
caption support.

00:00:30.001 --> 00:00:30.885 line:13 position: 80% align:middle size:100%
<v John> Yes, I'd like to hear more
about that.

There's a W3 Candidate Recommendation here that could also be helpful in learning more about WebVTT.

Thanks again!

Collapse
 
tchaflich profile image
Thomas C. Haflich

In awe at the perfectness of the example you picked. Sand. Om nom. 10/10 would watch with captions again

Collapse
 
rhymes profile image
rhymes

I didn't know, wow!!

HTML5 is full of gems

Collapse
 
itsmealext profile image
Alex

This is great Ashlee! Props!