Skip to content

Instantly share code, notes, and snippets.

@omar2205
Created January 23, 2023 21:07
Show Gist options
  • Save omar2205/c7e83c9fd6e6a7d2e483736ad27e04f1 to your computer and use it in GitHub Desktop.
Save omar2205/c7e83c9fd6e6a7d2e483736ad27e04f1 to your computer and use it in GitHub Desktop.
Get YouTube video thumbnails
function getThumbnails(videoId) {
const thumbnails = {}
const baseUrl = `https://img.youtube.com/vi/${videoId}/`
thumbnails.maxresdefault = `${baseUrl}maxresdefault.jpg`
thumbnails.hqdefault = `${baseUrl}hqdefault.jpg`
thumbnails.mqdefault = `${baseUrl}mqdefault.jpg`
thumbnails.default = `${baseUrl}default.jpg`
return thumbnails
}
export default getThumbnails
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment