-
Notifications
You must be signed in to change notification settings - Fork 95
New issue
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
Only open camera when capturing #21
Comments
It seems like a nice addition. This should be done by handlers, not Read(), and if option enabled main should not initialize the camera. I think it should not be a big job but need to check first, not sure when. What do you think option should be called, |
"Deferred camera initialization" is the most descriptive way, but that doesn't fit well into a short CLI option, so "lazy" works. Kind of fun. |
One thing to think about is, what happens when multiple clients are accessing the camera at once. Would need to maintain a client counter and only release the camera when the client counter reaches zero. |
Every handler will anyway check if camera is nil/null on every request and will initialize it if it is not, so one client closes tab/connection and it closes the camera, the other client on the next request will again initialize the camera. Needs to be tested but I would not want to complicate this much. |
If somebody is viewing MJPEG stream they would not want to have the camera turned off underneath them by somebody capturing a single JPEG... This would result in a glitch in the video stream as the camera has to be reinitialized for the next MJPEG frame. I guess that's not the end of the world, but not perfect. Or is that not an issue for some other reason I'm not seeing? Oh well! It's your project, your call! Thanks again for this project and thanks for being so responsive! |
Maybe initialize as you suggest, and handle closing the camera by a ConnState hook ( https://golang.org/pkg/net/http/#ConnState ) that increments a counter on StateNew, decrements on StateClosed (maybe StateHijacked too) and closes the camera whenever the counter transitions to zero. Again not a Go expert, just reading the docs... |
There is already notification for close here https://github.com/gen2brain/cam2ip/blob/master/handlers/mjpeg.go#L41 and for HTML on socket close can close the camera. My point is that if there is a need for e.g. many mjpeg clients, one can put some mjpeg-proxy in front of cam2ip, there are many of them, if lazy option doesn't work for many clients, user can disable it etc. |
This is a fantastic tool! It would work better for my case if it if it did not grab the camera as soon as the server is started, but instead only when it is actively serving video or images. This might result in some lag time when starting up, but this would not be a problem for me. Leaving the camera off when the server is not in use would be helpful.
Not familiar with go or opencv, but it looks that the camera is initialized in New()
cam2ip/camera/camera_cv2.go
Line 26 in 19ea541
Not sure but maybe that initialization could be deferred? Possibly to Read() ?? Or maybe done by the handlers? (JPEG would release immediately; MJPEG or HTTP would release when the connection is closed)
The text was updated successfully, but these errors were encountered: