5

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.

worldofjr
  • 3,868
  • 8
  • 37
  • 49
adree
  • 51
  • 1
  • 1
  • 5
  • Solution for all browsers: [https://stackoverflow.com/a/66344245/3087186](https://stackoverflow.com/a/66344245/3087186) ... – artico May 26 '21 at 19:11

1 Answers1

3

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.

Community
  • 1
  • 1
Amarok24
  • 94
  • 1
  • 9
  • The local server provided by Ember 2.18 is one of these cases. Just pushed the code to a Development server and it all works fine there. – ecairol Jun 04 '18 at 16:10