Questions tagged [ppapi]

PPAPI is a cross-platform API for plugins for web browsers. It is currently an experimental feature of Chromium and Google Chrome.

74 questions
0
votes
1 answer

Flash SWF inside CefSharp browser doesn't appear to register double click events

There is a lot of things to be considered here so I was just generally wondering if anyone has gotten a SWF flash file to fully work inside a CefSharp browser in WPF more specifically the double-click events for the flash SWF. Right now everything…
0
votes
1 answer

How to customize a ppapi which could be used by Javascript?

I am researching on the Chromium PPAPI. After looking through all APIs from the official reference here: https://developer.chrome.com/native-client/cpp-api-dev, I seldom found any APIs that could be used by, or communicate with JS directly. In my…
tonymiao
  • 305
  • 3
  • 16
0
votes
2 answers

Extracting the outputs/results from an executed .pexe file

My goal is to convert a C++ program in to a .pexe file in order to execute it later on a remote computer. The .pexe file will contain some mathematical formulas or functions to be calculated on a remote computer, so I’ll be basically using the…
0
votes
0 answers

DirectShow SDK + Adobe Flash Player PPAPI

everyone. I use this project. http://www.codeproject.com/Articles/437617/DirectShow-Virtual-Video-Capture-Source-Filter-in It's work on GrabStupid. It's work on browser (for example in Google Chrome(->GH) (in older version) it's work but doesn't…
V. Anton
  • 1
  • 1
  • 1
0
votes
1 answer

In chromium, how to combine --register-pepper-plugins with --launch-and-load-app

I am using chromium command line switch --launch-and-load-app to start a chromium instance that shows only the app that I am developing. This is working well. Also, I am using --register-pepper-plugins to specify a shared library containing a PPAPI…
Owen
  • 38,836
  • 14
  • 95
  • 125
0
votes
1 answer

Make a NPAPI plugin(made for firefox) run into chrome browser

I have a NPAPI plugin , running fine in firefox. Now i want to port it to chrome browser, means i want it to work in chrome also. But i have learnt after browsing on internet and many links that chrome no longer supports NPAPI rather now it supports…
user2181750
  • 241
  • 5
  • 15
0
votes
1 answer

NACL_SDK How to intercept the video stream saved as a YUV image

nacl_sdk\pepper_44\examples\api\media_stream_video this is a example. i want to catch a frame to save as a YUV image. PS.You can find some silly mistakes in my message. Sorry for my English.
0
votes
1 answer

Multiple OpenGL ppapi plugins in a single webpage

I am using the following example ppapi plugin that renders a spinning cube with openGL: https://chromium.googlesource.com/chromium/src/ppapi/+/master/examples/gles2_spinning_cube. I am able to embed this in a webpage running in Chrome and it all…
user1710407
  • 491
  • 1
  • 5
  • 16
0
votes
1 answer

How to pass JavaScript function between Chrome browser and PNaCl plugin correctly

I wrote a simple echoer PNaCl plugin whose message handler just post the incoming message back unchanged: class Instance : public pp::Instance { public: virtual void HandleMessage(const pp::Var& message_data) { …
timrau
  • 22,578
  • 4
  • 51
  • 64
0
votes
1 answer

Using PPAPI to launch client applications e.g. Microsoft Word

I am very new at PPAPI. I have already written a plugin to launch client's applications e.g. Word in my web based application using NPAPI (using a Java applet). Now I want to do that using PPAPI. Any chances? Thanks Reza
Reza Ahmadi
  • 357
  • 3
  • 12
0
votes
1 answer

Can I get chrome's web page's HWND in Windows?

I want to port a web game from firebreath to ppapi, the old implemention is: firebreath plugin pass window's HWND to a other process in the other process,render and update the game I read some doc of ppapi, it seems that there is no way to get…
sssa2000
  • 3
  • 1
0
votes
1 answer

PNaCl - How do i post message from index.html to PNaCl?

I run the hello_nacl example of nacl_sdk(pepper_39) and everything is fine. But i try adding something on index.html to post message to PNaCl, it's not work and get error like this "NativeClient: NaCl module crashed". This is my index.html, anyone…
PTTjanice001
  • 43
  • 1
  • 11
0
votes
1 answer

How to add custom function in pepper plugin API

As title, can I add a custom function in pepper plugin API? Can the custom function return a value? like this HelloTutorialModule = document.getElementById('hello_tutorial'); var errorCode; errorCode =…
PTTjanice001
  • 43
  • 1
  • 11
0
votes
1 answer

Google Chrome : Check if particular app is installed on the system or not

I'm working on a Quick Meeting type app. Where I want to check whether my app is installed on the system or not. My Application installer copies the plugin to "Internet Plugins" folder on Mac OSX and ".mozila/plugins" on Linux. I'm using this web…
Omkar
  • 1,108
  • 10
  • 19
0
votes
1 answer

Protractor E2E Test - Blocked Browser Plugins

I am creating a suite of tests for a rich angular app in protractor. The site requires macromedia and another proprietary plugin to operate appropriately. I have manually set the "always allowed" flag on the relevant plugins. When these plugins fail…