We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Per my comment here, I am not able to get data on the frame event.
Code to reproduce this issue (on Raspberry Pi running node js)
const { StreamCamera, Codec } = require("pi-camera-connect"); const streamCamera = new StreamCamera({ codec: Codec.MJPEG }); const videoStream = streamCamera.createStream(); await streamCamera.startCapture(); videoStream.on("frame", data => console.log("New frame", data)); // NOTHING IN CONSOLE? // Wait 5 seconds await new Promise(resolve => setTimeout(() => resolve(), 5000)); await streamCamera.stopCapture();
Thanks
The text was updated successfully, but these errors were encountered:
Added comment to existing frame issue
Sorry, something went wrong.
No branches or pull requests
Per my comment here, I am not able to get data on the frame event.
Code to reproduce this issue (on Raspberry Pi running node js)
Thanks
The text was updated successfully, but these errors were encountered: