-1

I'm searching a good webbrowser for my project but I can't find one.

  1. I need html5 video streaming (doesn't work in CefSharp) and
  2. I need javascript injecting (doesn't really work in the normal webbrowser)

Thanks for help

Devian
  • 817
  • 1
  • 12
  • 22
BlackHawk
  • 1
  • 5

1 Answers1

0

CefSharp is able to play html5 video and audio. And here's the list with all the supported audio and video codecs.

Just because CefSharp doesn't include proprietary Audio and Video codecs, doesn't mean it can't. Due to licensing reasons mentioned here, CefSharp is not including them. You can however build cef and embed your own codecs in it.

You can always grab the code from their GitHub Repository and experiment your self considering this great answer on stackoverflow

Or you can use GeckoFx as suggested on another answer posted on similar question on stackoverflow. Which is isn't really a WPF Control, but you can use it with a WindowsFormsHost.

Devian
  • 817
  • 1
  • 12
  • 22
  • Tried geckofx I'm getting Invalidcastexception on `var path = System.IO.Path.Combine(Directory.GetCurrentDirectory(), "xulrunner"); Gecko.Xpcom.Initialize(path);` – BlackHawk May 28 '18 at 19:29