Was: "PPAPI (Pepper) video plugin -NaCl module failed - how to resolve?"
Google's Say Goodbye to Our Old Friend NPAPI blog post indicates that NPAPI plugin support will cease by the end of 2014 (in favor of PPAPI).
We have considered the option of using the ffmpeg libraries to create our own video plugin to simply decode RTSP encoded H.264 video streams on the client - important because we need as near real-time video display (avoiding transcoding latency). Using the ffmpeg libraries, there is still a 3-5 second delay in decoding the stream, not as fast as running MPlayer with the -benchmark
option.
In trying Google's PNaCl recommendation, we just got the LOADING status and the following error:
NativeClient: NaCl module load failed: PnaclCoordinator: Compile process could not be created: ServiceRuntime: failed to start
We don't need an encoder, simply decoding the incoming stream to images would be fine - or other suggestions?
What are some NPAPI alternatives to solve this problem?