|
Rank: Member Groups: Member
Joined: 1/16/2016 Posts: 16
|
When I navigate to a certain website which should play a video, the website displays this error message: "Use a different / alternative browser!" The URL is http://www.bild.de/video/clip/justin-bieber/faehrt-paparazzo-um-unfall-vor-kirche-52677196.bild.htmlIs this something that needs to be fixed by the EO.Browser devs or something that I could fix myself? EO.Web.dll version 17.1.76.0
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,225
|
Hi, You will need to enable proprietary video/audio codecs in order to play this video. See here for more details: https://www.essentialobjects.com/doc/webbrowser/advanced/html5.aspxFor example, in order for our TabbedBrowser sample application to be able to play this video, you will need to add the following line in App.xaml.cs before creating MainWindow:
Code: C#
EO.WebEngine.Engine.Default.Options.AllowProprietaryMediaFormats();
Make sure you read and comply with MPEG LA license terms before you add this. Thanks!
|
|
Rank: Member Groups: Member
Joined: 1/16/2016 Posts: 16
|
For me, it's
EO.WebBrowser.Runtime.AllowProprietaryMediaFormats()
Works great!
Thanks very much!
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,225
|
You are very welcome and glad to hear that it works for you! Please feel free to let us know if you run into anything else.
|
|