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 )

9502 put(a) pogledan, 2 odgovor(a) 16.7.2013. 15:03:58Kreirao(la) fdiama
fdiama

fdiama

16.7.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?
Ovaj sadržaj još nije ocijenjen. 
107 Reputacija 11 Ukupno objava
pajo

pajo

17.7.2013. 8: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.
Ovaj sadržaj još nije ocijenjen. 
629 Reputacija 83 Ukupno objava