Name is required.
Email address is required.
Invalid email address
Answer is required.
Exceeding max length of 5KB

stream works fine in IE8, IE9 but NOT in IE11


Example: http://www.radiofm.be/stations/test3.html
This stream / player works fine in older IE, latest FF, Chrome and Safari, but NOT in IE11
What is going wrong?

Also, when I add a different url (from a different radiostation, for example http://server-22.stream-server.nl:80/;stream.mp3) into the player I face the same problem.
But adding this url: http://91.221.151.155:80/;stream.mp3 and it works fine in IE11.

Please help.

2 Community Answers

tjboersma

User  
0 rated :

Just noticed that adding primary: 'flash' solved the problem.
But isn't that strange? Or do I mis something?

And is it possible that adding the primary flash line into the script has an effect on the alignment of the player?

Randy

JW Player Support Agent  
0 rated :

Hello,

Please review the following five scenarios that might be at play:

1) Encoding

Please make sure you are using these settings in your encoding: http://support.jwplayer.com/customer/portal/articles/1403635-media-format-reference#video/. Some browsers are more stringent than others about encoding requirements. I typically use Handbrake (free on Mac) to encode video files.

Here are a few screenshots of my encoding settings:
http://cl.ly/image/0g1D3o3b1Z2v
http://cl.ly/image/3Z0d3y0u3F1I

2) Mime-type:

Please make sure that the request for your video is returning a proper mime-type that corresponds to your video format:
support.jwplayer.com/customer/portal/articles/1403635-media-format-reference#video

3) Hardware acceleration:

IE has a browser setting called ‘hardware acceleration’ which has been known to break some videos. You can disable hardware acceleration with our player by using ‘stagevideo’: false in your setup configuration (or you can disable the setting in your browser).

4) Mov Atom

The ‘moov’ atom in your video encoding. This is basically a piece of metadata that tells a video player when the video is ready to play. When creating web-friendly video, it is important to select a ‘web optimized’ or fast-start settings.

If you are using ffmpeg, you can use the following:
ffmpeg -i input.mp4 -codec copy -map 0 -movflags +faststart output.mp4

5) Pseudo-Streaming with Flash

If you’re serving videos to clients with older browsers that need Flash mode, you may need to enable psuedostreaming:
http://support.jwplayer.com/customer/portal/articles/1430518-pseudo-streaming-in-flash

This question has received the maximum number of answers.