Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

HTML video tag Safari

I have a website that uses the HTML5 video tag;

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

The video is playing on Firefox and Chrome but not at all in Safari (desktop, iPhone etc). MP4 should be supported and work on Safari.

like image 704
adree Avatar asked Oct 18 '22 14:10

adree


1 Answers

The same problem has already been discussed here: HTML5 Video tag not working in Safari , iPhone and iPad Either it has to do with a MimeType issue or the web server does not support HTTP byte-range requests.

like image 102
Amarok24 Avatar answered Oct 21 '22 04:10

Amarok24