Safari HTML Video Tag

I have a website that uses the HTML5 tag;

<video id='video' autoplay muted loop controls> <source src="video/homevideo.mp4" /> </video> 

The video plays in Firefox and Chrome, but not at all in Safari (desktop, iPhone, etc.). MP4 must be supported and work in Safari.

+5
source share
1 answer

The same problem has already been discussed here: HTML5 Video tag does not work in Safari, iPhone and iPad Either this is due to the MimeType problem, or the web server does not support HTTP byte requests.

+2
source

Source: https://habr.com/ru/post/1244359/


All Articles