user2185041
user2185041

Reputation: 99

JWplayer not loading in ie 10

I am struggling to run JWplayer in ie 10. It works fine in other browsers (firefox and chrome).

In ie it get following error: Error loading player: No playable sources found

Following is the code:

<script type="text/javascript">
                            jwplayer("sample_1").setup({
                                flashplayer: ajax_url + 'jwplayer/jwplayer.flash.swf',
                                file : ajax_url + "uploads/sample.flv",
                                image : "uploads/small.jpg",
                                width : 'auto',
                                height: 'auto'

                            });
</script>

Upvotes: 0

Views: 2575

Answers (1)

Tarik Plakalo
Tarik Plakalo

Reputation: 26

Your video file has this MIME TYPE - application/octet-stream

It should be - video/mp4

Upvotes: 1

Related Questions