I found how to start the google drive video at a given time See stackoverflow question but I did not found how to autoplay the video. Anyone can help? More generally, I would like to know all the available options but I could not find the documentation.
Asked
Active
Viewed 5,956 times
0
-
Does this answer your question? [How to embed videos from Google drive to webpage?](https://stackoverflow.com/questions/40951504/how-to-embed-videos-from-google-drive-to-webpage) – Denver Prophit Jr. Nov 04 '20 at 05:29
1 Answers
0
If you are coding in HTML5 then this should help.
<video controls autoplay>
<source src="https://source" type="video/mp4">
Browser does not support the video tag.
</video>

NewBee
- 394
- 3
- 15
-
don't forget a lot of the new caveats around auto-play videos depending on platform/browser that only allow it when muted, when in view, etc – Offbeatmammal Jul 31 '18 at 00:38
-