Pepperflash not working in Cefsharp version 65.0.0.0

1k Views Asked by At

We have recently upgraded Cefsharp to 65.0.0.0 from 43.0.0.0 in one of our projects. After the upgrade flash no longer loads in browser, it gives an error that

"Adobe Flash player is out of date"

. We have embedded a specific version of pepperflash 25.0.0.171 in the project. the code snippet as below

settings.CefCommandLineArgs.Remove("enable-system-flash");
string PpapiFlashVersion = "25.0.0.171";
var pepFlashPlayerPath = Path.Combine(AppDomain.CurrentDomain.SetupInformation.ApplicationBase,"pepflashplayer");                
settings.CefCommandLineArgs.Add("ppapi-flash-path", pepFlashPlayerPath);
settings.CefCommandLineArgs.Add("ppapi-flash-version", PpapiFlashVersion);

After getting the error I thought I'll try to use the latest version of pepper flash (31.0.0.108). But when I do that I get another error

"Right click to run Adobe Flash player"

Doing the right click doesn't work either.

Any help will be greatly appreciated. Thanks

0

There are 0 best solutions below