# HiRes M0107 IMX412 compatiblity with Voxl2 mini board

Source: https://forum.modalai.com/topic/3247/hires-m0107-imx412-compatiblity-with-voxl2-mini-board
Category: General Questions (https://forum.modalai.com/category/2/general-questions)
Posted: 2024-03-21 14:21:32 UTC by Sanket Shah
Replies: 5 · Views: 1452

## Sanket Shah · 2024-03-21 14:21:32 UTC

Hardware : Voxl2 mini board only with HiRes M0107 IMX412 camera.
VOXL SDK : 1.0.0

I have a Voxl2 mini board with the MX412 camera. I have connected the J7U pin with configuration 8 as mentioned here :
[https://docs.modalai.com/voxl2-camera-configs/#c-08-hires-only](link url)

The camera is detected ( in my logs I get number of cameras as 1 ) but on voxl-inspect-cam -a I get  empty table with just camera names.
I was able to get this exact setup working with IMX214 but IMX412 does not seem to work.

What should be my next steps?

## Reply by Moderator (ModalAI staff) · 2024-03-21 15:03:24 UTC

@Sanket-Shah Hi Sanket, the M0107 wasn't fully supported until SDK 1.1.0. See this page to upgrade https://docs.modalai.com/flash-system-image/

## Reply by Sanket Shah · 2024-03-21 15:48:06 UTC (in reply to Moderator)

@Moderator Thanks for the response. 

I have flashed to 1.1.1.  
In regards to configuring the camera, should I use camera config 8 ( which has 214 only ) or should I make a custom config. Unlike the previous version which had the "--imx412" flag, this version does not seem to have this. How to activate imx412 in SDK 1.1.1? 
Thanks.

## Reply by Sanket Shah · 2024-03-21 16:04:03 UTC (in reply to Sanket Shah)

@Moderator The camera works now with custom config.  

Is there a way to stream these images to my local machine without connecting my voxl2 mini to the network?

## Reply by Moderator (ModalAI staff) · 2024-03-21 16:13:45 UTC (in reply to Sanket Shah)

@Sanket-Shah [voxl-inspect-cam](https://docs.modalai.com/mpa-camera-interface/#voxl-inspect-cam) can be used to verify it's working and see related stats. You need a GUI of some kind to actually view the image, which requires a network

## Reply by Alex Kushleyev (ModalAI staff) · 2024-03-21 19:31:31 UTC (in reply to Moderator)

You can also dump frames or record a video , for example:

```
voxl-record-video hires_large_encoded /data/vid1.h264
```

please note the resulting video may not be playable directly, but you can fix it using ffmpeg:

```
ffmpeg -r 30 -i voxl-record-video.h264 -codec copy videofile.mp4
```

or play on your PC:

```
ffplay voxl-record-video.h264 -framerate 30
```
