zoukankan      html  css  js  c++  java
  • 如何使CEF支持Flash

    方法一:复制Chrome浏览器下的pepperFlash,通过cef命令行参数设置路径。

    public Form1()
    {
        InitializeComponent();
        InitializeChromium();
    }
     
    private void InitializeChromium()
    {
        ChromiumWebBrowser.OnBeforeCfxInitialize += ChromiumWebBrowser_OnBeforeCfxInitialize;
        ChromiumWebBrowser.OnBeforeCommandLineProcessing += ChromiumWebBrowser_OnBeforeCommandLineProcessing;
        ChromiumWebBrowser.Initialize();
     
        ChromiumWebBrowser wb = new ChromiumWebBrowser();
        wb.Dock = DockStyle.Fill;
        wb.Parent = this;
        wb.LoadUrl("chrome://version");
    }
     
    void ChromiumWebBrowser_OnBeforeCommandLineProcessing(Chromium.Event.CfxOnBeforeCommandLineProcessingEventArgs e)
    {
        e.CommandLine.AppendSwitch("--disable-web-security");//关闭同源策略
        e.CommandLine.AppendSwitchWithValue("ppapi-flash-version", "18.0.0.209");//PepperFlashmanifest.json中的version
        e.CommandLine.AppendSwitchWithValue("ppapi-flash-path", "PepperFlash\pepflashplayer.dll");
    }
     
    void ChromiumWebBrowser_OnBeforeCfxInitialize(Chromium.WebBrowser.Event.OnBeforeCfxInitializeEventArgs e)
    {
        e.Settings.CachePath = "Session";
        e.Settings.Locale = "zh-CN";
    }

    方法二:通过命令行参数设置cef使用系统安装的flash

    void ChromiumWebBrowser_OnBeforeCommandLineProcessing(Chromium.Event.CfxOnBeforeCommandLineProcessingEventArgs e)
    {
        e.CommandLine.AppendSwitch("--disable-web-security");//关闭同源策略
        e.CommandLine.AppendSwitch("--enable-system-flash");//使用系统flash
    }

    Chromium has removed support for NPAPI and consequently CEF no longer supports loading of the NPAPI Flash plugin. To support loading of the Pepper (PPAPI) Flash plugin the following implementation must be brought over from Chrome:

    In the browser process:

    1. ChromeContentClient::AddPepperPlugins -- Locates the Flash plugin library. In CEF this will be implemented via CefContentClient::AddPepperPlugins.
    2. ChromeContentBrowserClientPluginsPart::DidCreatePpapiPlugin -- Creates the ChromeBrowserPepperHostFactory that is responsible for the browser side of PPAPI message routing. In CEF this will be implemented via CefContentBrowserClient::DidCreatePpapiPlugin.
    3. ChromeBrowserPepperHostFactory::CreateResourceHost -- Creates the hosts for individual pieces of Flash-related functionality (e.g. PepperFlashBrowserHost, PepperFlashClipboardMessageFilter, PepperFlashDRMHost).

    In the renderer process:

    1. ChromeContentRendererClient::RenderFrameCreated -- Creates the ChromeRendererPepperHostFactory (via the per-RenderFrame PepperHelper) that is responsible for the renderer side of PPAPI message routing. In CEF this will be implemented via CefContentRendererClient::RenderFrameCreated.
    2. ChromeRendererPepperHostFactory::CreateResourceHost -- Creates the hosts for individual pieces of Flash-related functionality (e.g. PepperFlashRendererHost, PepperFlashFullscreenHost, PepperFlashMenuHost, PepperFlashFontFileHost, PepperFlashDRMRendererHost).

    参考:https://bitbucket.org/chromiumembedded/cef/issues/1586/add-pepper-flash-plugin-support

  • 相关阅读:
    JVM 启动参数设置
    Linux文件分割与合并
    设置tomcat使用指定的jdk版本
    java字符编码
    HASH 哈希处理完数据导致数据集第一行数据缺失
    HASH 何时将key加载到h.definedata()中
    字符串 批量全角、半角转换
    SAS_正则表达式 字符意义
    正则表达式基础篇
    sas options有用的全局设置
  • 原文地址:https://www.cnblogs.com/88223100/p/how_to_add_flash_support_in_cef.html
Copyright © 2011-2022 走看看