This is for those of you whom want to embed a video into your post, but want to play it from a specific point of time.
I will use my infamous 'High' video as to demonstrate the code.
Original
With time 61 seconds into the video
Since youtube has changed its embedding to iframe instead of my last instruction (if ANYONE remembers, LoL) which was object based. It actually became MUCH easier to time stamp this time around, since it is practically the same thing as just time stamping without embedding.
All you need to do is to find the web address that the video is located within the code that you have copied, then add
Then the result is
<iframe title="YouTube video player" class="youtube-player" type="text/html" width="480" height="390" src="https://www.youtube.com/embed/D9LopyqdzIw#t=61s" frameborder="0" allowFullScreen></iframe>
Its that simple.
I will use my infamous 'High' video as to demonstrate the code.
Original
- Code:
<iframe title="YouTube video player" class="youtube-player"
type="text/html" width="480" height="390"
src="http://www.youtube.com/embed/D9LopyqdzIw" frameborder="0"
allowFullScreen></iframe>
With time 61 seconds into the video
- Code:
<iframe title="YouTube video player" class="youtube-player" type="text/html" width="480" height="390" src="http://www.youtube.com/embed/D9LopyqdzIw#t=61s" frameborder="0" allowFullScreen></iframe>
Since youtube has changed its embedding to iframe instead of my last instruction (if ANYONE remembers, LoL) which was object based. It actually became MUCH easier to time stamp this time around, since it is practically the same thing as just time stamping without embedding.
All you need to do is to find the web address that the video is located within the code that you have copied, then add
- Code:
#t=00m00s
Then the result is
<iframe title="YouTube video player" class="youtube-player" type="text/html" width="480" height="390" src="https://www.youtube.com/embed/D9LopyqdzIw#t=61s" frameborder="0" allowFullScreen></iframe>
Its that simple.