SRT to YouTube Chapters
Paste an SRT file and get a chapter list you can drop straight into a YouTube description. The first chapter is moved to 0:00 for you, because YouTube throws away the whole list if it is not — which is why most converted chapter lists silently do nothing.
Everything runs locally: what you paste never leaves your browser.
Convert SRT subtitles to YouTube chapters
Valid — YouTube will accept this list.
How it works
Each SRT block is parsed into a cue with a start time and its text. Cues closer together than the gap you choose are merged, because subtitle cues land every few seconds and a chapter every three seconds is not a chapter list. The text of the surviving cue becomes the chapter title, with italics, {\an8} positioning tags, leading dashes and speaker labels removed.
Then the first chapter is moved to 0:00. This is the step that matters. A subtitle file that begins at 0:07 is completely normal, and a converter that copies that timing across produces a list YouTube discards in full — no error, no partial chapters, nothing. Finally the timestamps are rewritten into YouTube's format:M:SS below an hour, H:MM:SS above it, never SRT's zero-padded00:04:31,240.
What YouTube actually requires
- The first chapter starts at 0:00.
- There are at least 3 chapters.
- Every chapter runs at least 10 seconds.
Break any one of them and the list is ignored entirely rather than partially applied. That all-or-nothing behaviour is why a chapter list can look perfectly correct in the description and still never appear on the video. This tool checks all three and tells you which one failed instead of handing you a list that quietly does nothing.
What this is, if you searched for something else
People look for this as a youtube chapter generator, ansrt to chapters converter, or asubtitle to youtube chapters tool. They are the same job: you already have timings in a subtitle file, and you want them as chapters without retyping them. The part that varies between tools is whether they handle the 0:00 rule for you — which is the one that decides whether the list works at all.
Where these rules come from
The 0:00 requirement, the three-chapter minimum and the ten-second floor are YouTube's own published rules for video chapters, enforced by the platform when it parses a description. They are pinned as constants in this tool's source and asserted in its test suite, so if YouTube changes one, the page and the tests move together rather than drifting apart.