MonoX support board

Start the conversation, ask questions and share tips and solutions with fellow developers.

Non-registered users can only browse through our support boards. Please register now if you want to post your questions. It takes a second and it is completely free. Alternatively, you can log in without registration using your credentials at major sites such as Google, Microsoft Live, OpenId, Facebook, LinkedIn or Yahoo.

Html5 Video Player  (Mono Support )

Viewed 9565 time(s), 2 post(s) 16.07.2013 15:03:58by fdiama
fdiama

fdiama

16.07.2013 15:03:58
I'd like to use the HTML5 video player, but for the moment I'm finding some difficulty with setup;

Could you provide an example on setting up properly the HTML5 video player web part?
Dieser Inhalt wurde noch nicht bewertet. 
107 Reputation 11 Total posts
pajo

pajo

17.07.2013 08:30:17
Hi,

Usually problem is with compress module. In web.config try to look for HttpCompress section and if it's turned on exclude video mime types in config

<HttpCompress turnedOn="true" defaultProvider="Deflate" useCaching="true">
      ...
      <ExcludedMimeTypes>
        ...
        <add name="mp4" type="video/mp4" />
        <add name="ogv" type="video/ogg" />
        <add name="webm" type="video/webm" />
        ...
      </ExcludedMimeTypes>
</HttpCompress>
Next you need to check video format of your video, different browsers support different formats, to tackle this you will need to have same video in different format and set all of them as a source this way each browser will find one that it can play.

If you will still have trouble with playing video, I'll need more details about problems you are having.
Dieser Inhalt wurde noch nicht bewertet. 
629 Reputation 83 Total posts