Skip to content

Instantly share code, notes, and snippets.

@ramnathv
Created January 28, 2013 17:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ramnathv/4657442 to your computer and use it in GitHub Desktop.
Save ramnathv/4657442 to your computer and use it in GitHub Desktop.
Embed Youtube Videos as iFrame
embed_youtube <- function(video_id){
sprintf('<iframe width="1280" height="720" src="http://www.youtube.com/embed/%s" frameborder="0"
allowfullscreen style="background-image:url(http://img.youtube.com/vi/%s/0.jpg)"></iframe>', video_id, video_id)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment