Reputation: 51
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.
Upvotes: 5
Views: 13027
Reputation: 94
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.
Upvotes: 3