Raspberry Pi Cam with WebRTC and UV4l driver (Is the source code closed?)

I am using the UV4L driver (RasPiCam) from here with the WebRTC extension to get continuous real-time viewing streaming from this HTTP server (RaspberryPi).

I would like to examine the source code running on the server. Or is it a closed source?

+6
source share
1 answer

According to this web page, the driver is closed.

Now there is an open source driver that has been integrated into the kernel since December 2013.

To use it, just upgrade your raspberry Pi and run:

sudo modprobe bcm2835-v4l2 

To create a device node / dev / video0. Now you can use v4l2-compatible applications instead of uv4l, of which more accessibility.

0
source

Source: https://habr.com/ru/post/985934/


All Articles