Mar
11
2010

Setting the Starting Location on a YouTube Video

Sometimes you might need to show a clip from a YouTube video but don’t want to show all of it. If you are presenting in front of a class, fiddling around with the slider to the proper location might be distracting for the students and waste valuable class time. So, how do you get a video to start at just the right place?

Well of course, you could have the video preset so that when the class entered you could just start playing from the desired location. Another solution is to add some custom coding to the video URL. For example, this is the address of a video of Sir Ken Robinson at a TED talk in 2007:

http://www.youtube.com/watch?v=iG9CE55wbtY

At the beginning of the video, there are some introductions and a commercial for BMW. I don’t really want my audience to watch them so I will skip over them by directing the video to start 26 seconds into the presentation. To do this, just add a wee bit code: #t=00m26s

To break it down

  • # = separator [this separates the URL from the code to start the video]
  • t = Time [indicates that we are looking for a time]
  • m = Minute [the number of minutes into the presentation]
  • s = seconds [the number of seconds into the presentation]

So to get the video to start at the exact time I dictate, I just add this to the end of the URL. If yo click the link below, you will be taken to YouTube and the video will start at the 26 second mark.

http://www.youtube.com/watch?v=iG9CE55wbtY#t=00m26s

If you would prefer, you can also use youtubetime.com. This web site does the same thing but generates the code for you automatically so that you can just copy and embed the code wherever you like.




About the Author: Darin Wagner

I am a high school teacher and technology integrator.

Leave a comment