720p or 1080p wireless/wired/PoE IPCamera with FCC-certification has been on the market for a few years, at the price range of 30ish dollars, you can buy IPCamera modules for about $10 from vendors(mainly in China) and reprogram with your firmware as well. RPI-based camera is great to learn stuff, but to make a product-like devices, there are too many to choose on the market already, cheap and easy and most likely mo…
Links? I’d love to just buy the modules and stick them on my own boards.
Piipcam – 1080P IP Camera on a Raspberry Pi Zero W
81–86 of 86 posts
Re: Piipcam – 1080P IP Camera on a Raspberry Pi Zero W
#82Earlier quoted context omitted.
Thank you! The list of cameras for which I have added special support are: * Logitech C920 * Raspberry Pi Camera * e-Con AR0521 * ZED2 Depth camera (in V4L2 mode) In case your camera is not one of the above, APStreamline falls back to requesting an MJPG stream from the camera and then encoding it to H264 that using the x264enc software encoder. The software encoder has good quality but it requires more CPU power.
Thanks for the in-depth reply. Is there some process you setup on Github for others if we test with our own cameras and let you know?
Re: Piipcam – 1080P IP Camera on a Raspberry Pi Zero W
#83Earlier quoted context omitted.
Thanks for the in-depth reply. Is there some process you setup on Github for others if we test with our own cameras and let you know?
Yes, the way to test your own camera is to connect it to your computer and launch APStreamline. As the sibling comment suggested, feel free to add a GitHub issue if you want your camera to be supported. In case you want to DIY support for your camera, the steps here https://arnavdhamija.com/2020/10/29/apstreamline-v2/ have an outline of what to do.
Re: Piipcam – 1080P IP Camera on a Raspberry Pi Zero W
#84Earlier quoted context omitted.
Thanks for the in-depth reply. Is there some process you setup on Github for others if we test with our own cameras and let you know?
A pull request?
Re: Piipcam – 1080P IP Camera on a Raspberry Pi Zero W
#85It amazes me, really, that for as popular as this use case seems to be there isn't a simple, well-packaged way to stream a camera off a pi. I've been trying to get this working lately and nothing works "well". Motion is popular, but is limited to mjpeg rather than h.264. uv4l is closed source and not up to date with current OS versions. None of the various cvlc incantations to do better actually seem to work on my pi…
Gstreamer? I've used it in the past, both professionally and personally, to generate rtsp/rtp and it worked great.
But I couldn't figure out how to stream RTSP, especially not in a way that would preserve NTP timestamp information when restreaming (for synchronization with other streams). There is gst-rtsp-server, but as far as I can tell the idea is that you use it as a library to build your own custom server code.
Is there a simple way I was missing?
Re: Piipcam – 1080P IP Camera on a Raspberry Pi Zero W
#86It amazes me, really, that for as popular as this use case seems to be there isn't a simple, well-packaged way to stream a camera off a pi. I've been trying to get this working lately and nothing works "well". Motion is popular, but is limited to mjpeg rather than h.264. uv4l is closed source and not up to date with current OS versions. None of the various cvlc incantations to do better actually seem to work on my pi…