Post

Replies

Boosts

Views

Activity

Reply to Video tag not showing preview on iphone
From https://muffinman.io/blog/hack-for-ios-safari-to-display-html-video-thumbnail/ 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. So the code looks like this: <video> <source src="path-to-video.mp4#t=0.001" type="video/mp4" /> </video>
Aug ’21