CefSharp ppapi 插件进程崩溃

CefSharp ppapi plugin process crashed

提问人:HandyCreative 提问时间:11/15/2023 最后编辑:HandyCreative 更新时间:11/15/2023 访问量:19

问:

我的项目的配置;

  • CefSharp 版本 : 75.0.3770.100
  • PepFlashPlayer版本:32.0.0.371
  • .NET 4.0.30319

应用程序随机崩溃,显示空白的 Flash 图像。 下面是调试.log.:

[1115/080911.530:VERBOSE1:ppapi_plugin_process_host.cc(490)] PpapiPluginProcessHost::OnChannelError()
[1115/080911.530:VERBOSE1:ppapi_plugin_process_host.cc(459)] ppapi plugin process crashed.
[1115/081010.266:VERBOSE1:statistics_recorder.cc(410)] Collections of all histograms

我无法升级 CefSharp,因为我的应用程序仍然依赖于 Flash 插件。

我现有的一些 CefSettings:

settings.SetOffScreenRenderingBestPerformanceArgs();
settings.CefCommandLineArgs.Add("enable-npapi", "1");
//Enable NPAPI plugs which were disabled by default in Chromium 43 (NPAPI will be removed completely in Chromium 45)

currentPath = String.Format(@"C:\ProgramData\CefSharpTest");
settings.CefCommandLineArgs.Add("ppapi-flash-path", 
Path.Combine(currentPath, "pepflashplayer.dll"));
C# .NET Winforms CefSharp

评论

0赞 amaitland 11/18/2023
也许试一试 github.com/Mzying2001/CefFlashBrowser,看看是否有效。从某个角度来看,不支持闪存(或旧版本)。CefSharp
0赞 HandyCreative 11/22/2023
我明白了,顺便说一句,我认为 pepperflash 版本 32.O.O.371 是生命结束前的最后一个版本。我将首先尝试此版本 34.O.O.192。非常感谢您@amaitland的回答。

答: 暂无答案