joomlatools / joomlatools-pages

Joomlatools Pages is an easy to use page generator (for Joomla)
GNU General Public License v3.0
48 stars 9 forks source link

Fix video preview on IOS / Safari #953

Closed github-actions[bot] closed 2 years ago

github-actions[bot] commented 2 years ago

This PR Closes #952 and fixes an issue with video previews on IOS / Safari by making use of Media Fragments

By simply adding #t=0.001 at the end of the video file url, we are telling the browser to skip the first millisecond of the video. When you do this, even iOS Safari will preload and show that specific frame to the user.

<video>
  <source src="path-to-video.mp4#t=0.001" type="video/mp4" />
</video>