Skip to content

Instantly share code, notes, and snippets.

@jenswittmann
Last active October 2, 2025 13:55
Show Gist options
  • Select an option

  • Save jenswittmann/226504373a0083156d52aaff8a7c1064 to your computer and use it in GitHub Desktop.

Select an option

Save jenswittmann/226504373a0083156d52aaff8a7c1064 to your computer and use it in GitHub Desktop.
HTML5 Video Autoplay in Safari, Chrome und Co. for 2025
<?php if (preg_match('/safari/i', $_SERVER['HTTP_USER_AGENT']) && !preg_match('/chrome/i', $_SERVER['HTTP_USER_AGENT'])): ?>
<!-- Docs: https://developer.apple.com/documentation/webkit/delivering-video-content-for-safari#Use-MP4-Video-Instead-of-Animated-GIFs -->
<img
src="video.mp4"
width="1600"
height="900"
alt="" />
<?php else: ?>
<video
src="video.mp4"
width="1600"
height="900"
autoplay
muted
loop
playsinline></video>
<?php endif ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment