This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

PROCESSOR-SDK-AM62A: checking the gst command - camera capture and 1 frame image dump

Part Number: PROCESSOR-SDK-AM62A

Hello,

He is testing camera sensor interface with AM62A board.

The sensor is OV2312, 2Mpixel, 1600 x 1300 @ 60fps.

At first, he wants to capture 1 frame and dump to a file with below GST command.

So, can you please check if below GST command is correct or not?

.

gst-launch-1.0 v4l2src device=/dev/video3 ! video/x-bayer, format=bggi10, width=1600, height=1300, framerate=60/1 ! tiovxisp sensor-name=SENSOR_OV2312_UB953_LI ! filesink location=capture_dump_0.bin -e

.

Best regards,

Hayden

  • Hi Hayden,

    The GStreamer command seems to be correct, Do you see any issues with this command? Maybe some cap filters might be missing, if the command is not functioning.

    Please share the log, if you are having an issue running your command.

    Here is my GStreamer command that I use with my IMX219 on my AM62A board with H265 encoding:

    gst-launch-1.0 -v v4l2src device=/dev/video2 io-mode=dmabuf-import ! \
    video/x-bayer, width=1920, height=1080, framerate=30/1, format=rggb10 ! \
    tiovxisp sink_0::device=/dev/v4l-subdev2 sensor-name="SENSOR_SONY_IMX219_RPI" dcc-isp-file=/opt/imaging/imx219/dcc_viss_10b.bin sink_0::dcc-2a-file=/opt/imaging/imx219/dcc_2a_10b.bin format-msb=9 ! \
    video/x-raw, format=NV12, width=1920, height=1080, framerate=30/1 ! \
    v4l2h265enc output-io-mode=dmabuf-import ! \
    filesink location=out1.265 

    Hope this helps.

    Best Regards

    Suren