When you link Youtube videos in your blog posts or in your websites did you ever wanted the video to play from a specific time interval?. There are multiple ways to play Youtube videos from a specific time interval instead of playing it from start.
1. Play the Youtube video.Inside the player right click and in context menu you will see an option Copy Video URL at current Time. Select that option.
2. Selecting that option will display an URL. Press Ctrl + C Key to copy the URL
3. Next get the Emded code for the video which can be taken by clicking Share located beneath the video and click Embed and you will get the Embed code
<iframe width=”560″ height=”315″ src=”//www.youtube.com/embed/lvtfD_rJ2hE” frameborder=”0″ allowfullscreen></iframe>
In the above Embed code change the URL inside src attribute with the URL copied in Step two. This will play the video from the exact position where you wanted and the emed code will look like
<iframe width=”560″ height=”315″ src=”http://www.youtube.com/watch?v=lvtfD_rJ2hE#t=52” frameborder=”0″ allowfullscreen></iframe>
There is another alternate way to do this.Copy the Youtube URL and at the end add &t=##m##S replace ## with appropriate minutes and seconds or &t=##S replace ## with appropriate seconds.For example http://www.youtube.com/watch?v=mEH6tDLKcVU&t=1m22s or http://www.youtube.com/watch?v=mEH6tDLKcVU&t=82s will play the video from 1 minutes 22 seconds(82 seconds)