home, HTML, updated

How to set thumbnail on html video tag?

You can add your image path in poster attribute of video tag.

<video width="470" height="255" poster="thumbnail.png" controls>
    <source src="video.mp4" type="video/mp4">
   </video>

post a comment