Content Type HTTP application/octet-stream is not supported in FireFox with JPlayer in MVC3 -


i'm having issue firefox , jplayer (i think same problem in ie9): whenever try play video in firefox following error in console , video wont play:

"content-type" http of "application/octet-stream" not supported.

enter image description here

well, translating, means "content-type" http of "app/octet-stream" not supported. load of media resources "name" failed.

it works fine in chrome though. have researched, looks firefox has problems mime types , wont load has octet-stream in it. however, havent found way solve this. read must declare mime types in iis config. don't know how make work while debugging.

well, problem solved firefox, apparently had supply mv4 type instead of basic mv4, ogv , webmv.

   new jplayerplaylist({                         jplayer: "#jquery_jplayer_2",                         cssselectorancestor: "#jp_container_2"},                          messagevideos ,                         {                         swfpath: '@url.content("~/scripts/jplayer.swf")',                          supplied: "m4v"(used pass "mv4", "ogv", "webmv")}); 

Comments

Popular posts from this blog

c# - SVN Error : "svnadmin: E205000: Too many arguments" -

c# - Copy ObservableCollection to another ObservableCollection -

All overlapping substrings matching a java regex -