Skip to content Skip to sidebar Skip to footer

Videojs Player Gets Stuck With Ie9

I'm trying to implement HTML5 Video in a site and for that I'm using VideoJS, so far it works great in Firefox and Chrome but my problem comes when I try to play the video with IE9

Solution 1:

Have you checked to make sure you are mp4 file is using the H.264 compression scheme?

Solution 2:

Your issue is common, and the above answer barely scratches the surface.

MP4 files neet to have their indexes written ahead of the video data within the file. IE isn't freezing, it's actually downloading your video all at once. You can inspect this from your console.

The fix is very simple. Download the AIR application QTIndexSwapper2, and run your MP4 files through it. Reload those files to your server and they will seamlessly stream through the VideoJS SWF Player.

Make sure you have controls and autplay

Post a Comment for "Videojs Player Gets Stuck With Ie9"