Three Timestamp Tools YouTube Offers (and How They Differ)
Most people think "timestamp link" covers everything YouTube offers for pointing to a specific moment. Actually there are three separate features that do related but different things. Mixing them up causes confusion about what the recipient gets and what the experience looks like.
Timestamp Links are URLs with a time parameter appended. Clicking the link opens the video and begins playback at that exact second. The viewer can scrub freely before or after. Nothing is locked. It is just a convenient entry point into the video at a specific moment. You construct these manually by editing the URL, or YouTube generates them for you through the Share menu.
Chapters are creator-defined segments added to a video via the description. They appear as markers on the video's progress bar and as a clickable chapter list that sometimes appears below the player. Chapters divide the video into named sections. Any viewer can jump to any chapter. They are set once by the creator and are the same for every viewer.
YouTube Clips are 5-to-60-second segments that any viewer can create from any public video, not just the creator. You define the start and end, give it a title, and YouTube generates a shareable link. That link opens the video and plays just the defined segment (it stops and the rest of the video continues). Clips cannot be downloaded through YouTube. They are share-only.
The key differences: timestamp links have no end point (video plays from that point forward), Chapters are creator-set and apply to all viewers, and Clips have a defined start and end but exist only as links within YouTube's platform. Each tool exists for a different purpose.
Timestamp URL Format Explained
The technical format is simple once you see the pattern. But the specific syntax depends on which URL format you are starting with, and using the wrong variant breaks the timestamp.
The Basic Formats
Short URL with timestamp:
https://youtu.be/VIDEO_ID?t=90
The ?t=90 means "start at 90 seconds." The ? introduces the first query parameter. Since there are no other parameters in a short URL, you use ?.
Long URL with timestamp:
https://www.youtube.com/watch?v=VIDEO_ID&t=90s
Here the URL already contains ?v=VIDEO_ID. Because ? is already used, you connect the timestamp parameter with & instead. The s suffix on 90s means "seconds" and is optional but accepted.
This is the most common mistake: people copy a long YouTube URL and add ?t=90 to the end. This breaks the existing ?v= parameter because you cannot have two ? in a URL. Always use &t= when appending to a long URL that already has query parameters.
Time Format Variations
Seconds only (most reliable):
?t=90
YouTube converts seconds internally. 90 seconds is 1 minute 30 seconds. Use this format whenever possible because it never has parsing issues.
Hours, minutes, seconds (human-readable but avoid mixing):
?t=1h2m10s
This format is accepted and works. 1 hour, 2 minutes, 10 seconds. You can omit any unit that is zero. ?t=2m10s works. ?t=45s works. Do not mix this with decimal seconds.
What does not work:
?t=1:02:10 (colon format fails)
?t=90.5 (decimal seconds unreliable)
?t=1h30 (mixing hours with no unit on second value)
The safe universal approach: always convert to total seconds. For anything at 1 hour 2 minutes 10 seconds: (1 x 3600) + (2 x 60) + 10 = 3730. Use ?t=3730. Works everywhere, every time.
Embed URLs with Timestamps
When embedding a YouTube video in a webpage with an iframe, the timestamp syntax is different:
https://www.youtube.com/embed/VIDEO_ID?start=90
In embed URLs, the parameter is start instead of t. The value must be in seconds. Using t= in an embed URL will not work. This trips up developers frequently.
How to Create Timestamp Links
Three ways, depending on where you are and what device you have.
Method 1: Right-Click the Video Player (Desktop, Best Option)
- Pause the video at the exact moment you want to share.
- Right-click anywhere on the video player.
- A context menu appears. Select "Copy video URL at current time."
- YouTube copies a URL to your clipboard with the
?t=parameter already set to the current second.
This is the fastest method and the one most people overlook because they go to the Share button instead. The right-click menu is always one step quicker.
Method 2: The Share Button with "Start at" Option
- Pause the video at the moment you want to share.
- Click the Share button below the video (the arrow icon).
- A share dialog appears. At the bottom of the dialog, you will see a checkbox labeled "Start at [time]." The time shown is wherever the video is currently paused.
- Make sure the checkbox is checked.
- Click Copy to copy the timestamp URL.
You can also manually edit the time in the "Start at" field if you want to adjust by a few seconds without going back to scrub the video. Type the time in H:MM:SS format (or MM:SS for videos under an hour).
Method 3: Mobile Browser Workaround
The YouTube mobile app does not have the right-click option and the Share button on mobile does not consistently show the "Start at" checkbox in all versions. The workaround:
- Pause the video in the app at your desired moment.
- Note the current timestamp displayed in the player (e.g., 4:32).
- Tap the Share button and copy the base URL.
- Open any notes app or browser address bar and manually append
&t=272(converting 4:32 to 272 seconds).
Alternatively, open the video in your mobile browser (Safari, Chrome) instead of the app. The desktop-style Share dialog is more consistently available there.
YouTube Chapters: Setup and Rules
Chapters are one of the highest-impact things a creator can add to a video. They improve navigation, reduce abandonment when people cannot find the section they want, and have SEO benefits discussed in the next section. Setting them up is free and takes five minutes.
How to Add Chapters
Chapters are added entirely through the video description. There is no separate interface. You type timestamps and labels in the description, and YouTube's system detects and activates them automatically.
Format: Each chapter requires a timestamp at the start of a line followed by a space and the chapter title.
0:00 Introduction
1:45 Setting up the project
5:22 Writing the first function
11:08 Testing and debugging
18:30 Deploying to production
24:00 Conclusion
The Rules (Breaking Any One Breaks All Chapters)
Rule 1: The first timestamp must be 0:00. Not 0:01. Not 0:05. Exactly 0:00. If you start at 0:01, YouTube will not recognize any of the timestamps as chapters. No exceptions.
Rule 2: You need at least three timestamps. One or two timestamps in the description are ignored. You need a minimum of three chapter points for the chapter feature to activate.
Rule 3: Timestamps must be in chronological order. Earlier timestamps must appear before later ones in the list. If you write 5:00 before 3:00 in the description, YouTube rejects the entire chapter list.
Rule 4: Each chapter must be at least 10 seconds long. If two consecutive timestamps are less than 10 seconds apart, YouTube may reject them or merge them. Keep each chapter at least 10-15 seconds for safety.
Rule 5: Timestamps must not exceed the video duration. A timestamp pointing to 45:00 in a 30-minute video obviously does not work. Less obviously, a timestamp pointing to 29:58 in a 30:00 video creates a chapter of only 2 seconds, which may be rejected for violating the 10-second rule.
Format variations that work: Both 0:00 and 00:00 work. Both 5:22 and 05:22 work. For videos over an hour, use 1:05:22.
After saving the description with valid chapters, YouTube processes the chapter markers within a few minutes. Refresh the video page to see them appear on the progress bar.
The SEO Benefit of Chapters (This One Actually Matters)
Google's search results can display what Google calls "Key Moments" for YouTube videos. These are timestamp-labeled sections of the video that appear directly in search results as an expandable timeline beneath the video thumbnail. Users can click a specific moment and jump straight to that section without even watching from the beginning.
Properly formatted YouTube chapters are one of the primary ways Google populates Key Moments. When your video has clear, descriptive chapter titles at accurate timestamps, Google can extract those chapters and present them directly in search results.
The practical impact: your video can answer multiple specific search queries simultaneously. A chapter titled "How to install dependencies" might surface for someone searching "install node modules," even if the full video title is about building an entire app. Each chapter is effectively a separate entry point for search traffic.
What makes chapters good for SEO specifically:
- Chapter titles should match search language. Use the terms people actually search for, not your internal shorthand. "Setting up Git" instead of "Step 2: Environment Prep."
- Chapters should be specific and complete thoughts. "Introduction" is useless. "Why Python is better for data science than R" is a search-worthy chapter title.
- Chapter timestamps must be accurate. If your chapter title says "Installing FFmpeg" but the content in that chapter section is actually about something else, Google will eventually figure this out. Accuracy matters.
Beyond Google, YouTube's own search also considers chapter titles. A chapter titled "beginner Python tutorial" contributes that keyword context to the video's overall relevance for related searches, even if those exact words are not in the main title or description.
YouTube Clips Feature: Share a 5-60 Second Moment
The Clips feature lets any viewer of a public YouTube video create a shareable snippet with a defined start and end point. It was designed for moments worth sharing without the whole video: a funny line, a key insight, a reaction, a highlight from a live stream.
How to Create a Clip
- While watching any public YouTube video, click the Clip button in the toolbar below the video. It looks like a film strip with scissors.
- A clip editor appears with handles on a timeline. Drag the handles to define your clip's start and end points.
- The clip must be between 5 and 60 seconds long. The interface enforces this automatically.
- Give your clip a title (required).
- Click Share Clip.
- YouTube generates a unique URL for your clip (format:
https://www.youtube.com/clip/CLIP_ID).
When someone opens a clip link, YouTube plays the defined segment and then... continues playing the full video from that point onward. The clip does not stop playback. It is an entry point with a custom defined start that then plays the full video. This is different from how most people expect clips to work.
The clip URL is permanent (unless the original video is deleted or made private) and requires no login to view. Clips are indexed and can be found through YouTube search if the clip title is descriptive.
Creators can see clips made from their videos in YouTube Studio under Content, then filtering for Clips. You cannot delete clips other people make from your videos. You can prevent new clips from being created by disabling the feature in your video's settings.
Clips vs Downloading Clips: The Critical Difference
This causes genuine confusion. They sound similar. They are fundamentally different.
A YouTube Clip is a shareable link to a segment of a YouTube video. The clip lives on YouTube's servers. The viewer must have internet access and a YouTube-functional device to watch it. They cannot take it anywhere. There is no file. No download. No offline access. No editing. No re-uploading to another platform. It is a URL pointing to a YouTube-hosted time slice.
A downloaded clip from a tool like YTCut is an actual file on your device. MP4, MP3, WebM, whatever format you chose. You own that file. You can store it, edit it, upload it anywhere, use it offline, put it in a presentation, or archive it. The file is independent of YouTube and remains accessible whether or not YouTube's servers are up.
The use cases are different enough that both tools can coexist:
- YouTube Clips: sharing "watch this moment" links in Discord, Slack, social media, group chats. Fast, no tool needed, works for casual sharing.
- YTCut downloads: content repurposing, research archives, offline study material, podcast clips, creating short-form content for other platforms, anything that needs a file rather than a link.
There is also an important legal and access consideration. YouTube Clips disappear if the source video is removed. YTCut downloads stay on your device permanently, regardless of what happens to the original video. For archival purposes, the download is the only reliable option.
Timestamp Links in Comments
This is a much simpler system than URL construction. In YouTube comment sections, you do not need to build a URL. You just type the timestamp in a specific format and YouTube automatically converts it into a clickable link.
Formats that become clickable timestamps in comments:
0:45 (45 seconds)
1:23 (1 minute 23 seconds)
12:30 (12 minutes 30 seconds)
1:23:45 (1 hour 23 minutes 45 seconds)
YouTube's comment system detects any text matching these patterns and converts them into hyperlinks. Clicking the link in the comment jumps the video to that point. The viewer does not navigate away. The video player scrubs to the timestamp and plays from there.
This only works in YouTube comment sections. If you paste a timestamp in the format 1:23 in a Twitter post, Reddit comment, or email, it is plain text. No clickable link.
Common uses for timestamps in comments:
- Creator self-promotion: Creators posting the first comment on their own video with a full chapter list drives navigation and signals to YouTube that the video covers specific topics.
- Community highlights: Viewers pointing to the funniest or most important moments ("the part at 4:32 is insane").
- Corrections: Viewers flagging where a creator made an error ("at 12:15 you said 2024 but you mean 2026").
- Answering questions: Another viewer or the creator pointing someone to the part of the video that answers their comment question.
Using Timestamps in Video Descriptions for Self-Referencing
Beyond chapters, there are other ways timestamps in descriptions serve both creators and viewers.
Product or resource references tied to moments. If at 8:22 you mention a specific tool, your description can say "8:22 - The tool I mentioned" and that timestamp will be clickable. Viewers get instant access to context for every resource you reference without hunting through the full description.
Correction notes. "Note (added June 2026): The information at 14:00 has changed. [Corrected information here]." Linking to the specific timestamp makes the correction useful instead of vague.
Reaction videos and responses. If you are responding to another creator's video, timestamps pointing to your moments that respond to specific parts of the original video make the content easier to follow. "Responding to their argument at 2:15" with your timestamp at your 3:40 where you respond.
In YouTube descriptions, timestamps in the MM:SS or H:MM:SS format also become clickable links automatically, just like in comments. This works even when the timestamp is embedded in a sentence: "You will find the answer starting at 5:44 in this video" makes "5:44" a clickable link.
Business Use Cases for Timestamp Links
Most of the documentation online treats timestamp links as a casual sharing tool. They are actually very useful in professional and business contexts where you need to direct people to specific information efficiently.
Customer support documentation. If you have product tutorial videos, timestamp links let you create support documentation that points directly to the relevant section. Instead of "watch the setup video," your support docs say "click here to see exactly how to configure the export settings (2:15 in the video)." This reduces support ticket volume because users find what they need faster.
Employee onboarding. Training videos are long. New employees do not need to watch 45-minute orientation videos to find the answer to one question. A well-organized onboarding wiki with timestamp links to specific sections means someone can jump directly to "How to submit expenses (watch from 12:30 to 18:45 of the onboarding video)" rather than scrubbing through the whole thing.
Course materials and educational content. For courses hosted on YouTube (or using YouTube videos), timestamp links let you build lesson plans that reference specific video moments. "For this assignment, watch the section on data normalization starting at 34:10." Exact. Efficient. No ambiguity.
Team standard operating procedures. If your team uses video walkthroughs of processes, timestamp links in your SOPs replace vague descriptions with direct video references. "To merge branches: see the git workflow video at 7:45."
Sales and demos. Sales calls often end with "I'll send you some resources." A timestamp link to the exact section of a demo video that answers the prospect's specific objection is more compelling than a generic link to a 20-minute overview video. "Here is the exact section showing how our integration with Salesforce works."
Journalism and research. When citing a video source, a timestamp link to the exact quote or data is far more credible and useful than "somewhere in this video." Readers and editors can verify the claim immediately.
Testing Timestamp Links Before Publishing
This is a step that a genuinely embarrassing number of people skip. They construct a timestamp URL, paste it somewhere, and assume it works. Sometimes it does not. Reasons include wrong parameter syntax, a copy-paste error adding an extra character, or the timestamp pointing to slightly the wrong moment.
The correct test: open a new incognito/private browser window and paste your timestamp URL there. The incognito window ensures you are not looking at a cached version and that your own watch position on the video is not interfering. The video should start playing from exactly the moment you intended.
Check these things specifically:
- The video starts at the right moment. Not 5 seconds early or late.
- The correct video loads. If you have multiple videos from the same channel, make sure you grabbed the right video ID.
- The URL does not return a 404 or redirect to YouTube's home page. This usually means the video was made private or deleted.
- For embed URLs with
start=parameter: embed the iframe in a test page and verify the behavior there, not just by opening the embed URL directly.
For chapter timestamps in descriptions: after adding chapters and saving, open the video page (not Studio) in a new tab and verify the chapter markers appear on the progress bar. If they do not appear within 5 minutes, re-check your formatting against the rules listed in the Chapters section above.
Common Format Mistakes and Fixes
These are the actual errors that break timestamp links, pulled from support requests and developer forums.
| Wrong | Right | Why It Breaks |
|---|---|---|
youtube.com/watch?v=ABC?t=90 |
youtube.com/watch?v=ABC&t=90 |
Two question marks in one URL |
?t=1:30:00 |
?t=5400 or ?t=1h30m |
Colon-format not supported |
Chapters starting at 0:01 |
First chapter at 0:00 |
YouTube requires 0:00 as first timestamp |
| Only 2 chapter timestamps | Minimum 3 timestamps | YouTube ignores chapters with fewer than 3 |
embed/VIDEO_ID?t=90 |
embed/VIDEO_ID?start=90 |
Embed URLs use start= not t= |
| Clicking Share without checking "Start at" box | Enable the "Start at" checkbox in Share dialog | Share URL defaults to no timestamp if unchecked |
International Considerations
Timestamp URL syntax is universal. The ?t= and &t= parameters work identically regardless of the viewer's country, language setting, or YouTube regional domain. A timestamp URL created in Japan works in Brazil works in Germany. No changes needed.
What is not universal: video availability. If the source video is geo-restricted (blocked in certain countries), the timestamp link will fail for viewers in those countries regardless of how correctly you formatted the URL. The timestamp parameter cannot override content restrictions. The video just will not load at all.
YouTube's regional domain variations (youtube.co.uk, youtube.de, youtube.co.jp) all redirect to youtube.com. A link to youtu.be or youtube.com works globally. You do not need country-specific URLs.
For chapters: YouTube automatically translates the word "Chapters" in the interface but not the chapter titles themselves. Your chapter titles remain exactly as you wrote them. If you want your chapters to be searchable in multiple languages, you would need to add the translations to the chapter titles yourself or use YouTube's auto-translation features for the description.
Advanced: Playlists with Timestamps
Combining playlist navigation with timestamps is less commonly known and occasionally useful for complex sharing scenarios.
The URL format for a specific video in a playlist starting at a specific timestamp:
https://www.youtube.com/watch?v=VIDEO_ID&list=PLAYLIST_ID&index=2&t=45s
Breaking this down:
v=VIDEO_ID: the specific video you want to start onlist=PLAYLIST_ID: the playlist (so "Up Next" follows playlist order)index=2: which position in the playlist this video is at (1-indexed). This parameter helps YouTube track playlist position correctlyt=45s: start 45 seconds into the video
Use case: a course playlist where you want to send a student directly to the second lesson starting at the 45-second mark (skipping a preamble). This URL drops them at exactly that point while keeping the full playlist context, so when the video ends, the next lesson starts automatically.
You can find the playlist ID in any playlist URL after list=. Playlist IDs typically start with PL followed by a long string of letters and numbers.
The index parameter is optional. Without it, YouTube still loads the correct video with the timestamp. The index just helps maintain playlist tracking for "Next video" sequencing. Include it for the best playlist experience, skip it if you just want the video at a specific time regardless of playlist position tracking.
FAQ
Does a timestamp link bypass age restrictions or geo-restrictions?
No. Timestamp parameters affect playback position only. If a video requires age verification, is geo-blocked, or is otherwise restricted, the timestamp link will fail at the same point the plain link would fail. The timestamp cannot grant access that the underlying video does not permit.
Can I add chapters to a video after it has been published for years?
Yes. You can add, edit, or remove chapter timestamps in a video description at any time regardless of when the video was published. Edit the description in YouTube Studio, add valid chapter timestamps following the rules above, and save. Chapters activate within a few minutes.
Why are my chapters not showing up even though I followed all the rules?
A few things to check: confirm the first timestamp is exactly 0:00 (not 0:01), confirm you have at least three timestamps, confirm they are in chronological order, and confirm no chapter is less than 10 seconds. If everything looks correct, wait up to 30 minutes before assuming something is wrong. YouTube's processing can be slow. Also check whether YouTube has automatically generated chapters for your video (shown as a different color on the progress bar). Automatically generated chapters from YouTube's AI might override your manually set ones if yours fail the validation rules.
Do YouTube Clips work on live streams?
You can create Clips from live streams, but only after the stream has ended and been processed into a VOD (video on demand). During an active live stream, the Clips option is not available. After the stream ends, the full replay is available for clipping like any regular video.
How long does a YouTube Clip link stay active?
Clip links remain active as long as the original video is public and the clip has not been deleted by its creator. If the original video is deleted, made private, or age-restricted, existing clips from that video will stop working. YouTube does not provide a maximum lifespan for clips beyond these conditions.
Can I use a timestamp link in a YouTube ad campaign?
YouTube's own advertising platform (Google Ads) does not support timestamp parameters in the destination URL for video ads. The ad plays the video from the beginning. Timestamp links work in organic sharing scenarios but are stripped or ignored in paid ad contexts. If you need viewers to reach a specific section via ads, consider trimming the video to start at the relevant point or using YouTube's video ad sequencing.
What is the maximum number of chapters I can add to a video?
YouTube does not publish an exact maximum, but practical experience suggests the limit is around 100 chapters per video. For any video where you would have more than 100 chapters, you likely have a different organizational problem that chapters alone cannot solve. Consider splitting the video instead.