Website – Adding a youtube video to your page

Well, since I’ve been busy updating all my materials for the big upcoming conference, I thought i’d do a quick post of how to add a youtube video as an embedded object into your web pages.  All and all, it’s pretty simple, but I’m glad someone else gave me the first one, so I could just mimic it going forward 🙂

<object width=”640″ height=”360″ classid=”clsid:d27cdb6e-ae6d-11cf-96b8-444553540000″ codebase=”http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0″><param name=”allowFullScreen” value=”true” /><param name=”allowscriptaccess” value=”always” /><param name=”src” value=”http://www.youtube.com/v/XXXX?version=3&amp;hl=en_US” /><param name=”allowfullscreen” value=”true” /><embed width=”640″ height=”360″ type=”application/x-shockwave-flash” src=”http://www.youtube.com/v/XXXX?version=3&amp;hl=en_US” allowFullScreen=”true” allowscriptaccess=”always” allowfullscreen=”true” /></object>

Now the important pieces are the width, height and the src parameter.  You need to make sure you update each of these in BOTH places they show up.  in addition, when you upload your video to youtube, you get a full address, but here you just need the last piece of it.  in the code above, you see XXXX.  Replace XXXX with the last portion of the YouTube web address (everything after the last /).  And magically, you get a nice embedded youtube player directly in your webpage.

It’s not rocket science, but for a web novice like me, tricks like this are invaluable.

Thanks for reading.

2 thoughts on “Website – Adding a youtube video to your page

  1. Reply
    Justin Horton - February 20, 2013

    Good suggestion. I stumbled on an even simpler approach (less code for me to screw up…). If you’ve got WordPress’ Jetpack plugin installed / configured you can use shortcodes to get content inserted easily.

    [youtube=http://www.youtube.com/watch?v=XXXXXXXXXX]

    More info (and tweakable options) here http://en.support.wordpress.com/videos/youtube/

    1. Reply
      piehlm - February 22, 2013

      wow… that is a lot cleaner. After the conference, I’ll have to look into that plug-in… especially since I’m going to let my partner start handling the day to day stuff with the JaveLLin solutions website.
      I can always count on you to help bring me into the 20th century 🙂

Leave a Reply to piehlm Cancel reply

Your email address will not be published. Required fields are marked *

Scroll to top