具有 html5 视频和 javascript 注入的 c# WPF 浏览器
c# WPF Browser with html5 video and javascript injecting
我正在为我的项目搜索一个好的网络浏览器,但找不到。
- 我需要 html5 视频流(在 CefSharp 中不起作用)和
- 我需要 javascript 注入(在普通的网络浏览器中实际上不起作用)
感谢帮助
CefSharp 能够播放 html5 视频和音频。 here's the list 所有支持的音频和视频编解码器。
仅仅因为 CefSharp 不包含专有的音频和视频编解码器,并不意味着它不能。由于提到的许可原因here, CefSharp is not including them. You can however
您可以随时从他们的 GitHub Repository and experiment your self considering this great answer on Whosebug
获取代码
或者您可以使用 GeckoFx as suggested on another answer posted on similar question on Whosebug。这并不是真正的 WPF 控件,但您可以将它与 WindowsFormsHost 一起使用。
我正在为我的项目搜索一个好的网络浏览器,但找不到。
- 我需要 html5 视频流(在 CefSharp 中不起作用)和
- 我需要 javascript 注入(在普通的网络浏览器中实际上不起作用)
感谢帮助
CefSharp 能够播放 html5 视频和音频。 here's the list 所有支持的音频和视频编解码器。
仅仅因为 CefSharp 不包含专有的音频和视频编解码器,并不意味着它不能。由于提到的许可原因here, CefSharp is not including them. You can however
您可以随时从他们的 GitHub Repository and experiment your self considering this great answer on Whosebug
获取代码或者您可以使用 GeckoFx as suggested on another answer posted on similar question on Whosebug。这并不是真正的 WPF 控件,但您可以将它与 WindowsFormsHost 一起使用。