Answers for "html video in card examples"

1

how to display the first frame of the video element in html

Try appending  #t={seconds} to the end of your src value. Here's an example:

<video width="300" height="150">
   <source src="testvideo.mp4#t=0.1" type="video/mp4" />
</video>

It works fine on Chrome/Firefox and many other browsers.
Posted by: Guest on June-17-2020

Browse Popular Code Answers by Language