0

On a website i am using HTML5 to embedded a self hosted video without controls. I started out with a video file of 2mb and it played fine without problems in all browsers.

Recently I added a different video of 16mb. Now the video will play in all browsers except internet explorer. Does anyone have a clue how to fix this problem?

link: http://www.elephantdevelopment.nl/Startransfer/

HTML used:

<video id="myVideo" width="100%" height="100%"  loop>
    <source src="/Startransfer/wp-content/uploads/2016/05/startransfer-opening-home-video.mp4" type="video/mp4">
</video>
WSBT
  • 33,033
  • 18
  • 128
  • 133
Vonwelzen
  • 57
  • 10

1 Answers1

0

I figured out what the problem was. Although MP4 is supported in Internet explorer it does matter how you encode the file. Make sure you use BASELINE encoding when rendering for self hosted webvideo.

Vonwelzen
  • 57
  • 10