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 8325 time(s), 2 post(s) 7/16/2013 3:03:58 PMby fdiama
fdiama

fdiama

7/16/2013 3:03:58 PM
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?
This content has not been rated yet. 
107 Reputation 11 Total posts
pajo

pajo

7/17/2013 8:30:17 AM
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.
This content has not been rated yet. 
629 Reputation 83 Total posts