Skip to content
Videokr Start free

How to add video chapters (and why)

Chapters are titled timestamps starting at 0:00. On YouTube you add them as timestamped lines in the description; on your own site you add them in your player and emit them as Clip entries in the page’s VideoObject structured data so search engines can show jump-to key moments. Three to eight outcome-shaped titles beat twenty numbered sections.

The rules that apply everywhere

On YouTube

Put timestamped lines in the video description, starting with 0:00:

0:00 What this does
0:38 Uploading the file
1:24 Branding the player
2:05 Reading the retention curve

YouTube generates the chapter bar from that when it accepts the format — at least three chapters, first at zero.

On your own site

Two things have to happen. The player needs to show chapter markers and a menu, and the page needs to say so in machine-readable form:

{
  "@type": "VideoObject",
  "hasPart": [
    { "@type": "Clip", "name": "Uploading the file", "startOffset": 38, "endOffset": 84,
      "url": "https://videokr.com/v/tour?t=38" }
  ],
  "potentialAction": {
    "@type": "SeekToAction",
    "target": "https://videokr.com/v/tour?t={seek_to_second_number}",
    "startOffset-input": "required name=seek_to_second_number"
  }
}

In Videokr you add chapters in the video's Chapters tab and both halves are produced for you: markers and a menu in the player, a clickable list on the public page, and Clip plus SeekToAction in the page's structured data. See chapters and captions.

What chapters actually buy you

When to skip them

Under ninety seconds, chapters are noise. Use them on demos, walkthroughs, webinar replays and course lessons.

Frequently asked questions

How many chapters should a video have?

Three to eight for most marketing and demo videos. Fewer is not worth a menu; more is a table of contents nobody uses.

Do chapters need to start at 0:00?

Yes. Both YouTube’s chapter bar and Clip structured data expect the first chapter to start at zero.