Skip to content

Instantly share code, notes, and snippets.

@wochap
Created September 13, 2016 16:49
Show Gist options
  • Save wochap/2af32412082398c73c4301ba5382a2ea to your computer and use it in GitHub Desktop.
Save wochap/2af32412082398c73c4301ba5382a2ea to your computer and use it in GitHub Desktop.
Youtube video helpers
// get youtube video id
function getYtId (url) {
let match = url.match(/^.*(?:youtu.be\/|v\/|e\/|u\/\w+\/|embed\/|v=)([^#&\?]*).*/)
if (match) {
return match[1]
}
return ''
}
// get youtube video thumb
function getYtThumb (ytId) {
return `http://img.youtube.com/vi/${ytId}/mqdefault.jpg`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment