Camera integration PortentaX8 hat carrier

I'm trying to interface OC5647 Raspberry pi camera as per the Arduino document with my Portenta X8 on hat carrier board, but asper the document I'm unable to perform capturing frames or reading camera information using v4l2-src and gstreamer1.0, because it's not available with the image I got on the board, Please suggest me which version of the portentaX8 release support these features and from when can I download it

Hi @mukilkv,
the commands are intendend to be run from a container.

If you want to do it manually start a Debian container sharing the /dev/video0 device and install the v4l-utils packet and the gstreamer suite (see Installing on Linux).

To summarize, after setting the Linux environment and the overlay, you can run a container using

docker container run -ti --device /dev/video0:/dev/video0 debian

Then in the Debian shell, type execute:

apt update
apt install --no-install-recommends --yes v4l-utils
apt install --no-install-recommends --yes libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev libgstreamer-plugins-bad1.0-dev gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-libav gstreamer1.0-tools gstreamer1.0-x gstreamer1.0-alsa gstreamer1.0-gl gstreamer1.0-gtk3 gstreamer1.0-qt5 gstreamer1.0-pulseaudio

After that, you should be able to test your camera.