Embedding Shorts on a website
Most website builders and CMS platforms expect a standard watch URL or embed URL. A Shorts link often renders as a broken or blank embed. Converting to the embed format ensures the video displays correctly in an iframe.
Turn any YouTube Shorts URL into a standard watch link, extract the video ID, and grab a clean embed URL.
Standard watch URLs are easier to use in some embeds, tools and scripts. Converting Shorts links to normal format also makes it simpler to share a video in contexts where Shorts isn’t supported.
YouTube Shorts use a distinct URL path (/shorts/VIDEO_ID) that is not always recognised by third-party tools, analytics platforms, or embed generators. When you paste a Shorts link into a social scheduling tool, a CMS embed block, or an analytics dashboard, many of these services fail to resolve the video because they only parse the older /watch?v= format.
Converting to a normal watch URL also lets you access the full desktop player experience, including chapters, descriptions, comments, and end screens that are hidden or truncated in the Shorts player.
Every YouTube video has a unique 11-character ID. The same video can be reached through several URL formats, each designed for a different surface:
| Format | Example pattern | When it’s used |
|---|---|---|
| Standard watch | youtube.com/watch?v=ID |
Desktop player, most embeds, analytics tools |
| Shorts | youtube.com/shorts/ID |
Mobile Shorts feed, Shorts shelf on desktop |
| Short share | youtu.be/ID |
Shortened share links from the Share button |
| Embed | youtube.com/embed/ID |
iframe embeds on external websites |
This converter extracts the video ID from whichever format you provide and outputs all four URL types so you always have the right link for your use case.
Most website builders and CMS platforms expect a standard watch URL or embed URL. A Shorts link often renders as a broken or blank embed. Converting to the embed format ensures the video displays correctly in an iframe.
Social media dashboards and link-tracking services parse the v= parameter to identify videos. Shorts URLs lack this parameter, which can cause analytics tools to misattribute or ignore the link entirely.
When building content calendars, standardising every link to the watch format keeps spreadsheets clean and makes bulk operations like VLOOKUP or regex extraction more reliable.
Thumbnail grabber tools, including the TubeThumb Tools homepage, work with any URL format. But if your tool of choice only accepts watch URLs, converting first saves a step. See the Shorts thumbnail guide for more.
If you need to pull the ID without a tool, look for the 11-character alphanumeric string in the URL:
youtube.com/shorts/dQw4w9WgXcQ, the ID is everything after /shorts/.youtube.com/watch?v=dQw4w9WgXcQ, the ID is the value of the v parameter.youtu.be/dQw4w9WgXcQ, the ID is everything after the domain slash.youtube.com/embed/dQw4w9WgXcQ, the ID follows /embed/.The converter above handles all of these patterns automatically, including URLs with extra parameters like timestamps, playlists, or tracking tags.
For related workflows, explore the embed code generator, the Shorts thumbnail download guide, or return to the thumbnail grabber.
Yes. A Short is a regular YouTube video that is 60 seconds or less and vertical. It has the same 11-character video ID and can be accessed through any YouTube URL format. The Shorts player is simply a different viewing surface.
The video itself does not change. A standard watch URL opens the video in the full desktop player with comments, descriptions, and chapters visible. A Shorts URL opens it in the vertical Shorts feed. The content is identical.
Yes. Use the embed URL from this tool and set your iframe dimensions to a 9:16 ratio (for example, 315 wide by 560 tall). The video will play vertically inside the embed frame.
No. The conversion happens entirely in your browser using simple string manipulation. No API calls are made and no data is sent to any server.