Is there an alternative to getUserMedia for Android Phonegap (local)?

I found a few questions about Stackoverflow like this, but no answer yet. I am trying to transfer a camera stream from an Android device to HTML5 video text for real-time image processing. The camera plugin for Phonegap does not support this, so I tried using getUserMedia. This almost worked, except that Chrome does not support the file: // protocol for getUserMedia, where the video stream is stored (I think). It works when I run it from the server, but I want to be able to use this application locally, without an Internet connection. Does anyone have any ideas? Thank!

+4
source share

All Articles