Hello,
i try to use the Video Control in an asp.net webform (Version 12.1, .Net 4.0). I set the video source to an local mp4 file or a mp4 file on a webserver. I can open the file in an IE9 with no problems (
http://www.freizeit-saarmoselle.eu/Videos/1_5_M__Kurzfassung.mp4
)
But the IG VideoControl load and say 'no compatible video source' i each browser i try. Any idea?
Thanks
Patric
Hello Patric,
Please let us know if you need any further assistance regarding this matter.
Yes, there is a problem with the IIS default configuration. You should add the videos MIME types to the IIS MIME Types configuration. In the following picture you can see the MIME time you should add to your IIS configuration.
Patric said: Btw, in your sample you use the 'igButton'. Is there any documentation for the use of this class, it's properties, events and so on?
Btw, in your sample you use the 'igButton'. Is there any documentation for the use of this class, it's properties, events and so on?
igButton is not documented, because we didn’t include it as part of our jQuery toolset(we use it internally into our controls or as part of our samples). However nothing can stop you from using it. You can see how to use it from our samples.
Patric said: Additional question; as you see on my page, i use the 'bookmarks'-Array. But how can i hide the 'Skip to' frame in the Video Player?
Additional question; as you see on my page, i use the 'bookmarks'-Array. But how can i hide the 'Skip to' frame in the Video Player?
Attached you can find a sample which hides the "Skip to" section from the Video Player. It is nothing more than two CSS rules:
Best regards,
Martin Pavlov
Infragistics, Inc.
Hello Martin,
with your help i can make a running sample:
http://www.freizeit-saarmoselle.eu/video_neu/video_2.htm
But i must place the video on my DropBox! I f i use my IIS, the page prompt the error with the wrong source format! Any idea what to do by the IIS (I set the Mime Types, but something went wrong). So i think it is a problem with IIS and not with the conversion.
Hi Patric,
It seems that the relative Urls to the videos are wrong. The following line doesn't contain valid Urls:
sources: ["~/Kurzfassung_x264.mp4", "~/Kurzfassung_x264.theora.ogv", "~/Kurzfassung_x264.webmvp8.webm"],
The correct sources definition should look like this:
sources: ["Kurzfassung_x264.mp4", "Kurzfassung_x264.theora.ogv", "Kurzfassung_x264.webmvp8.webm"],
OR
sources: ["./Kurzfassung_x264.mp4", "./Kurzfassung_x264.theora.ogv", "./Kurzfassung_x264.webmvp8.webm"],
Try it and tell me if it works.
i load the video files to my Dropbox and inserted the links in your programm and it works!
http://www.freizeit-saarmoselle.eu/videos/igVideoPlayer_4.html
So there is something wrong with my IIS. But there is also something wrong with my local IE and Firefox and the installed codec base. I mean, i used the same converter as you, and in Miro is no way to set some wrong parameters. So if i find the reasons for this trouble i write my own cookbook of do's and don't. I try to load the files on an other Webserver, may be the newer version are too sensible and block too much. Do you have any ideas?
Thanks again for your support,