Embed YouTube Videos
1 min read
This guide leads you to embed YouTube videos in Starlight/Astro.
Step-by-Step Guide
Section titled Step-by-Step Guide-
Start by installing the
lite-youtube-embed
↗ package using your favorite package manager:Terminal window npm add lite-youtube-embedTerminal window pnpm add lite-youtube-embedTerminal window yarn add lite-youtube-embedTerminal window bun add lite-youtube-embed -
Create
YouTube.astro
insrc/components
:src/components/YouTube.astro ---// For more details, see: https://github.com/delucis/astro-embed/tree/main/packages/astro-embed-youtubeimport "lite-youtube-embed/src/lite-yt-embed.css"export interface Props extends astroHTML.JSX.HTMLAttributes {id: stringposter?: stringparams?: stringplaylabel?: string}const { id, poster, ...attrs } = Astro.props as Propsconst urlPattern =/(?=(\s*))\1(?:<a [^>]*?>)??(?=(\s*))\2(?:https?:\/\/)?(?:w{3}\.)?(?:youtube\.com|youtu\.be)\/(?:watch\?v=|embed\/|shorts\/)?([A-Za-z0-9-_]{11})(?:[^\s<>]*)(?=(\s*))\4(?:<\/a>)??(?=(\s*))\5/function urlMatcher(url: string): string | undefined {const match = url.match(urlPattern)return match?.[3]}const idRegExp = /^[A-Za-z0-9-_]+$/function extractID(idOrUrl: string) {if (idRegExp.test(idOrUrl)) return idOrUrlreturn urlMatcher(idOrUrl)}const videoid = extractID(id)const posterURL = poster || `https://i.ytimg.com/vi/${videoid}/hqdefault.jpg`---<lite-youtube{videoid}{...attrs}style={`background-image: url("${posterURL}");`}></lite-youtube><script>import "lite-youtube-embed";</script><style is:global>lite-youtube > iframe {all: unset !important;width: 100% !important;height: 100% !important;position: absolute !important;inset: 0 !important;border: 0 !important;}</style>
Example
Section titled ExampleNow, you can import it into your project inside any .astro/mdx
file. For example:
import YouTube from "@/components/YouTube.astro";
<YouTube id="_NIpfrGXwG8" poster="https://i3.ytimg.com/vi/_NIpfrGXwG8/maxresdefault.jpg"/>
The code above generates the following on the page: