Dany Maor
Dany Maor

Reputation: 2411

alternative for web browser control and Chromium CefSharp control for wpf C#

i need to use web pages on my wpf project and i tried to use wpf web browser control and Chromium CefSharp. my problem is web browser control does not support css transparency and Chromium CefSharp does not support html video tag with mp4 video format. Anyone know of an alternative control?

Upvotes: 0

Views: 3679

Answers (2)

null1941
null1941

Reputation: 972

Cefsharp doesn't support propietary codecs like mp4 and mp3. It supports open formats. Instead of mp4 you can convert your video to the opensource format "WEBM" and use it. If it is mp3 convert that to "ogg" then use it. Then Cefsharp will play them.

And there are some hacks, which makes Cefsharp to support propietary codecs also, Which is not legal. More information on how to support propietary codes CefSharp doesn't play mp3

Upvotes: 0

Giangregorio
Giangregorio

Reputation: 1510

You can try with GeckoFx, it's Windows Form Control so you should use a WindowsFormsHost as a container: https://bitbucket.org/geckofx/

Upvotes: 1

Related Questions