Skip to content

Instantly share code, notes, and snippets.

@alexander-elgin
Created January 30, 2020 15:31
Show Gist options
  • Save alexander-elgin/342ac498607ae9606dea238e32c19ed3 to your computer and use it in GitHub Desktop.
Save alexander-elgin/342ac498607ae9606dea238e32c19ed3 to your computer and use it in GitHub Desktop.
YouTube Thumbnails
const getThumbnails = (videoUrl) => {
const videoId = videoUrl.replace('https://www.youtube.com/watch?v=', '');
return ['hqdefault', 'mqdefault', 'maxresdefault'].map(size => `https://img.youtube.com/vi/${videoId}/${size}.jpg`);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment