Copy YouTube URL With Timestamp: Every Method (2026)
Copy YouTube URL With Timestamp: Every Method (2026)
Pause the video, right-click on the player itself, and choose Copy video URL at current time. That is the fastest way to copy a YouTube URL with timestamp on desktop, and it takes about two seconds. What lands on your clipboard is a short link with a time parameter attached, something in the shape of https://youtu.be/dQw4w9WgXcQ?t=142 — the video ID, then the second to start from.
That single menu item solves the common case. It does not solve every case. It gives you seconds, not minutes-and-seconds; it uses the short domain, which some tools handle badly; it is missing entirely on mobile; and it does nothing for embeds, playlists, or the moment you need to hand someone a range instead of a point. This guide covers every reliable way to copy a YouTube URL with timestamp, the URL format underneath all of them, and where each method quietly fails.
The Two Built-In Desktop Methods
Chrome and YouTube already give you two paths. They produce slightly different links.
Method 1: the player context menu. Right-click anywhere on the video image — not the page around it, the video itself. YouTube replaces the browser context menu with its own. The relevant items:
- Copy video URL — the plain watch link, no time
- Copy video URL at current time — the same video with the current playback position appended
- Copy embed code — a full iframe snippet for pasting into a CMS
Choosing the second item copies a youtu.be short link with ?t= and the elapsed seconds, rounded down. If the video is paused, you get the paused frame. If it is playing, you get the second you happened to click. Pausing first is worth the extra keystroke — k or the space bar toggles playback — because a link that lands two seconds early is more useful than one that lands two seconds late.
Method 2: the Share dialog. Below the video, click Share. A dialog opens with the link pre-selected and a checkbox reading Start at with a time field beside it. Tick it and the link updates immediately. The field is editable, so this is the only built-in way to set a timestamp that is not your current playback position. Type the time you want, copy, done.
The Share dialog is slower than the context menu by three or four clicks but it is the one to reach for when you want a specific, tidy number rather than wherever the playhead happens to sit. It also gives you the copy button rather than relying on the clipboard write happening silently.
The URL Format Behind Every Timestamp
Once you know the format, you can copy a YouTube URL with timestamp by hand, faster than any menu, and fix links other people send you that point at the wrong moment.
There are two link shapes YouTube produces:
- Long form:
https://www.youtube.com/watch?v=VIDEO_ID&t=142s - Short form:
https://youtu.be/VIDEO_ID?t=142
Both work. Note the punctuation difference: on the long form the video ID is the first query parameter so the time is joined with &, while on the short form the ID is part of the path so the time is the first parameter and is joined with ?. Getting that wrong is the single most common reason a hand-edited timestamp link silently ignores the time and starts from zero.
The t value accepts two notations:
- Plain seconds.
t=142ort=142s. Both are read as 142 seconds. This is what the built-in menu produces. - Compound time.
t=2m22s,t=1h05m30s. Easier to write from a chapter list or a transcript, and much easier to sanity-check when you read the link back.
Compound time is the better choice for anything you write by hand. If a tutorial chapter starts at 14:20, t=14m20s is trivial to type and obviously correct. Converting to 860 seconds first is a chance to make an arithmetic error nobody will catch until the link lands in the wrong place.
A few format notes that save debugging time:
- Fractional seconds are ignored.
t=142.5will not land on a half-second boundary. - Times past the end of the video are clamped to the end rather than erroring.
- The parameter is case-sensitive.
T=142does nothing. - Order does not matter.
?t=142&v=IDon a watch link works exactly as well as the reverse.
Why the Address Bar Copy Never Has the Timestamp
Here is the behaviour that confuses people. You watch a video for six minutes, hit Ctrl+L and Ctrl+C to grab the address, paste it into Slack, and your colleague opens it at the very beginning.
YouTube is a single-page application. It rewrites the address bar when you navigate between videos, but it deliberately does not rewrite it as playback advances. If it did, every second of watching would push a history entry and the back button would become useless. So the address bar holds the video URL and nothing about where you are inside it.
This matters for workflow design: the generic copy-the-current-URL habit does not produce a timestamp on YouTube, no matter how you trigger it. If you want to copy a YouTube URL with timestamp you have to use one of YouTube's own affordances or type the parameter yourself. Any tool that reads the tab address gets the video, not the moment.
That is worth stating plainly because the reverse is also true and more often relevant: for the hundreds of non-YouTube links you send in a week, reading the tab address is exactly right and the address bar round trip is pure friction. The native flow is Ctrl+L, Ctrl+A, Ctrl+C, Escape — four keystrokes and a lost focus position. The Ctrl+Shift+C extension collapses that to one keystroke, with clipboard permission only, no network calls, and no data collection. Use the player menu for video moments, one keystroke for everything else. For the broader pattern see how to share urls quickly.
Timestamps on Mobile
The desktop context menu does not exist on a phone. The mobile path is the share sheet.
In the YouTube app (Android and iOS):
- Tap the video to reveal the controls, then pause at the moment you want.
- Tap Share under the video.
- The share sheet shows the link with a start-at option. Enable it.
- Tap Copy link.
The app builds the same youtu.be/ID?t= short link the desktop menu produces. Someone opening it on a phone gets deep-linked into the app at the right second; someone opening it on a desktop gets the watch page seeked to the same point.
In mobile Chrome on youtube.com: the mobile web player has fewer affordances, and the reliable move is to request the desktop site from the Chrome menu, which restores the Share dialog and its start-at checkbox. Awkward, but it works when the app is not installed.
The manual fallback works everywhere. Copy the plain link, paste it into whatever you are writing, and type ?t=2m22s on the end. On a phone this is often faster than hunting for the toggle, and it survives app updates that move the option around.
Embeds Use a Different Parameter
This is the trap that costs the most time. If you copy a YouTube URL with timestamp and drop it into an iframe embed, the timestamp is ignored — because the embed player does not read t.
The embed player reads start:
https://www.youtube.com/embed/VIDEO_ID?start=142
And unlike watch pages, embeds also honour an end:
https://www.youtube.com/embed/VIDEO_ID?start=142&end=178
Both values are whole seconds only — no compound 2m22s notation here. Together they let you show a 36-second excerpt in a documentation page or a bug report without asking the reader to find the moment themselves. There is no way to do this on a normal watch page; the trimmed-range trick is embed-only.
Other embed parameters worth knowing when you are already editing the URL:
- autoplay=1 — starts on load, usually muted by browser policy unless the user has interacted
- mute=1 — pairs with autoplay to make it reliable
- rel=0 — limits end-of-video suggestions to the same channel
- loop=1 — requires a
playlistparameter set to the same video ID to actually loop
If your CMS accepts a raw watch link and builds the iframe itself, check what it does with query parameters before assuming your timestamp survived. Many strip everything except the video ID.
Playlists, Chapters, and Live Streams
Playlists. A watch link inside a playlist carries &list=PLAYLIST_ID and often &index=. Adding &t= still works, and the timestamp applies to the currently indexed video. Be careful when you copy the link out of the address bar: you may hand someone a 40-video playlist when you meant to send one clip. Strip list and index if the playlist context is not the point.
Chapters. If a creator has added chapters, the description contains timestamps that YouTube converts into clickable links. Those links are ordinary t parameters. Right-clicking a chapter marker in the progress bar is often the quickest way to grab a clean, creator-chosen moment rather than an arbitrary second.
Live streams and premieres. During a live broadcast there is no stable timeline to point at, so the time parameter is meaningless. Once the stream is archived as a normal video, timestamps behave exactly like any other upload. Wait for the archive before you send the link.
Shorts. A Short lives at /shorts/VIDEO_ID and the time parameter is effectively ignored — the format is too short for it to matter. If you genuinely need to point at a second inside one, swap /shorts/ for /watch?v= in the URL and the same video opens on a standard watch page where &t= works.
Cleaning Up the Link Before You Send It
Links copied from YouTube frequently carry more than the video ID and the time. Depending on how you arrived at the page you may be handing over a si share-attribution parameter, a pp playback parameter, list, index, ab_channel, or a pile of utm_ tags if the link came from a newsletter.
None of them are needed for the recipient to watch the video at the right moment. All of them make the link longer, uglier in a document, and more revealing about where you found it. A cleaned timestamped link needs exactly two things: the video ID and the time.
The tidy manual form to aim for:
https://youtu.be/VIDEO_ID?t=2m22s
Roughly 40 characters, unambiguous, and it renders as a proper embed preview in Slack, Notion, Linear, and most documentation tools. Deleting everything between the video ID and your own t parameter takes three seconds and makes the link portable. The same discipline applies to every link you paste, not just video ones — see copy clean url without tracking for the general case and the parameters worth stripping by default.
Method Comparison: Which One to Use When
Each way to copy a YouTube URL with timestamp has a situation it wins in.
Player context menu. Fastest, two seconds, zero typing. Use it for the default case: you are watching, you spot the moment, you want to send it now. Weakness: you get the current playhead and nothing else, and the result is in raw seconds.
Share dialog with start-at. Slower but editable. Use it when the moment is not where the playhead is, when you want a round number, or when you want to see the link before you copy it. Weakness: four or five clicks.
Manual parameter typing. Use it when you are reading a chapter list, transcribing timestamps for a summary document, or building several links to the same video at different points. Once the link is in your document, adding ?t=5m10s to a duplicate is faster than going back to the tab. Weakness: easy to get the ? versus & wrong.
Embed start and end. Use it for documentation, bug reports, and internal wikis where you want the reader to see one specific excerpt with no navigation at all. Weakness: only works in an iframe context.
Mobile share sheet. The only practical option on a phone. Weakness: the toggle moves between app versions.
A reasonable default for most people: player context menu for speed, Share dialog when precision matters, manual typing when you are already writing.
Building the Habit Around It
Copying a video moment is a small, specific skill inside a much larger one — getting a correct, clean, shareable link out of the browser without breaking your rhythm. The pattern that works:
- Pause before you copy. One key,
kor space. A paused frame gives you a deliberate timestamp instead of an accidental one. - Prefer the context menu unless you have a reason not to. It is muscle memory after a week.
- Trim the link in the destination. Remove
si,list, and campaign tags before you hit send. - Use compound time when typing by hand.
t=14m20sis self-documenting. - Keep a single keystroke bound for ordinary URLs so the YouTube special case does not become your general habit. Most of what you share is not a video.
Point five matters more than it looks. If you learn only the YouTube path you will still be doing the address bar round trip for every documentation page, dashboard, ticket, and pull request you send — which is most of them. Binding one shortcut for the general case and knowing the video-specific menu for the exception covers the whole surface. See fastest way to copy url chrome for the general-case benchmark.
Frequently Asked Questions
How do I copy a YouTube URL with timestamp on desktop? Pause at the moment you want, right-click directly on the video player, and choose Copy video URL at current time. The link on your clipboard is a youtu.be short link with a t parameter set to the current second. The Share dialog with the start-at checkbox is the alternative when you want to set a specific time rather than the current one.
What does the t parameter in a YouTube URL mean? The t parameter sets the start time of playback. It accepts plain seconds such as t=142 or a compound form such as t=2m22s, and YouTube seeks to that point when the page loads. On a watch link it is joined with an ampersand; on a youtu.be short link it is joined with a question mark.
Why does the address bar not show the timestamp while I watch? YouTube does not rewrite the address bar as playback advances, because doing so would flood browser history and break the back button. Copying the address bar mid-video therefore gives you the video URL with no time information. The timestamp only appears if you use the player menu, the share dialog, or type the parameter yourself.
Can I set an end time as well as a start time? Standard watch pages honour only the start time. The embed player supports both a start and an end parameter, measured in whole seconds, so trimmed clips are possible in embeds but not on youtube.com watch links.
Do YouTube timestamps work on mobile? Yes. The YouTube mobile app share sheet includes a start-at toggle that appends the current position to the copied link, and any timestamped link opens at the right moment in the app or mobile web. Typing the parameter on the end of a plain copied link is a reliable fallback.
Do timestamps work on YouTube Shorts? Not meaningfully. Shorts are short enough that the player ignores the time parameter in most cases. Swap the shorts path for a normal watch path in the URL and the timestamp starts working again.
Is there a faster way to copy URLs generally? Yes. A single-purpose copy-URL extension bound to a keyboard shortcut copies the current tab address without touching the address bar, which covers the other ninety percent of links you send that are not YouTube videos. The video-specific menus remain the right tool for video moments.
Copy the Moment, Then Fix Everything Else
Two things to walk away with. First, the mechanics: right-click the player for speed, the Share dialog for precision, ?t=2m22s when typing by hand, start= and end= for embeds, and always strip the share-attribution junk before you send. That is the whole surface area of how to copy a YouTube URL with timestamp, and it takes an afternoon of use to become automatic.
Second, the wider point. Video moments are the exception. The links you send all day are dashboards, docs, tickets, and articles, and every one of them still costs you an address bar round trip. Ctrl+Shift+C makes that one keystroke from any tab — free, clipboard permission only, no network calls, zero data collection. Install it, keep the YouTube context menu in your back pocket for the timestamped case, and stop paying for the same four keystrokes a hundred times a week.
Try Ctrl+Shift+C
Copy any URL with one keyboard shortcut. Free forever, no data collected.