是:" PPAPI(辣椒)视频插件-NaCl模块失败 - 如何解决? "
谷歌向我们的老朋友说再见NPAPI博客文章表明NPAPI插件支持将于2014年底停止(支持PPAPI).
我们曾考虑使用的选项的ffmpeg库,创建自己的视频插件,简单地解码在客户端上RTSP编码H.264视频流-重要的,因为我们需要为近实时视频显示(避免转码等待时间).使用ffmpeg库,解码流时仍有3-5秒的延迟,不如使用该选项运行MPlayer快-benchmark.
在尝试Google的PNaCl推荐时,我们刚刚获得了LOADING状态并出现以下错误:
NativeClient:NaCl模块加载失败:PnaclCoordinator:无法创建编译进程:ServiceRuntime:无法启动
我们不需要编码器,只需将输入流解码为图像就可以了 - 或者其他建议?
有哪些NPAPI替代方案可以解决这个问题?
我的目的是为windows用户创建一个chrome插件.是否可以从Native Client/PPAPI调用windows api.如果可能怎么样?
我最近开发了一个google chrome扩展程序,它使用了使用FireBreath框架制作的NPAPI插件.我刚刚发现谷歌将很快停止使用这些类型的插件,并最终禁止使用它们的所有现有扩展.所以,我想最终转向NaCl/PPAPI架构,但我不确定这个架构是否甚至可以支持我目前在NPAPI插件中所做的工作.
在我目前的NPAPI插件中,我支持OSX和Windows.在OSX版本上,插件执行system()函数,该函数执行一个小的1行AppleScript.它看起来像这样:
osascript -e 'tell app ... 
在Windows版本上,它执行COM库中的函数.两个版本最终都做了同样的事情.我有另一个选择是执行python脚本,如果我要走这条路线,我很可能想在本机组件中嵌入python.
用NaCl/PPAPI可以解决这些问题吗?
npapi google-chrome-extension google-nativeclient firebreath ppapi
我在Windows 8上使用Chrome 39.0.2171.95.我运行了Adobe的uninstall_flash_player.exe.我安装了Adobe博客文章中宣布的PPAPI内容调试器Flash Player .
When I go to chrome://plugins and expand the details with the link at the upper right, I can see that the built-in PepperFlash player is still there, but is disabled. The plugin one:
Location:   C:\WINDOWS\system32\Macromed\Flash\pepflashplayer32_16_0_0_235.dll
Type:   PPAPI (out-of-process)
is enabled. So far, so good.
Based on information I gleaned from this Adobe forum post, I copied my mm.cfg file to:
%USERPROFILE%/AppData/Local/Google/Chrome/User Data/Default/Pepper Data/Shockwave Flash/System
(I had to create the System directory.)
The …
我们使用的是专有的文档查看器,它在某些版本的Chrome中找不到与Pepper版本相同的Flash版本,因此我希望能够检测到它并以不同的格式重定向到相同的内容.
由于这个版本似乎落后于NPAPI,我一直在使用FlashDetect来查找版本号,但这需要每日更新.我宁愿不看UserAgent,因为它是导致麻烦而不是浏览器的Flash架构,但有没有任何方法用Javascript做到这一点?
来自NaCl新手的简单问题......
在我的javascript中,我向NaCl模块发布了一条消息.
在NaCl模块处理此消息后,如何在javascript中执行回调?
在入门教程中,给出了以下示例.
 function moduleDidLoad() {
      HelloTutorialModule = document.getElementById('hello_tutorial');
      updateStatus('SUCCESS');
      // Send a message to the Native Client module
      HelloTutorialModule.postMessage('hello');
    }
如何在HelloTutorialModule.postMessage('hello')中执行回调函数; ?
谢谢.
ppapi ×7
flash ×2
javascript ×2
npapi ×2
plugins ×2
callback ×1
dll ×1
ffmpeg ×1
firebreath ×1
vlc ×1