0

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.

Kara
  • 6,115
  • 16
  • 50
  • 57
Corinne Kubler
  • 2,072
  • 5
  • 22
  • 34
  • 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 Answers1

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