Set Thumbnail image on HTML5 video

Place to talk about website HTM elements, CSS style and design, and get help with HTML, CSS codes.
MarPlo
Posts: 186

Set Thumbnail image on HTML5 video

Is there a way to set thumbnail image on HTML5 video?
I want to display some pictures before play. My code looks like this:

Code: Select all

<video width="500" height="280" controls>
  <source src="video.mp4" type="video/mp4">
  <source src="video.ogg" type="video/ogg">
</video>

Admin Posts: 805
Just add the poster="image.png" attribute to the video tag.

Code: Select all

<video width="500" height="280" poster="your_image.png" controls>
  <source src="video.mp4" type="video/mp4">
  <source src="video.ogg" type="video/ogg">
</video>