I have embedded a Google Drive video file into my website and I want to set a start time for the video. Like embedding YouTube videos, is there a way of adding information at the end of the URL to set a start time? Can I do this with javascript or google api some how?
Asked
Active
Viewed 4,825 times
1 Answers
11
It should work just like youtube videos.
The start time html parameter: t={TIME}
{TIME} can be a couple of versions.
You can replace it with number of total seconds. For example if you wanted to start a 10 minutes and 51 seconds, you would put https://drive.google.com/file/d/videoid/view?t=651s since (10 * 60) + 51 = 651
It also support hours,minutes,seconds format as well

Rob Yull
- 334
- 4
- 7
-
3Yuill , is it possible to set the end time also? – AGK Nov 21 '18 at 05:23