Gstreamer support on imx6 nitrogen6max board

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Gstreamer support on imx6 nitrogen6max board

669 Views
niketsarda
Contributor II

We are having Nitrogen 6 max board , connected with OV5640MPIP camera, and we are able to capture display and view the capture data on same nitrogen device in Linux platform.

Now we need to stream display capture from Nitrogen 6max board to PC and other imx6 board using gstreamer.

Can you please suggest the gst command and pipeline configure value to stream display capture data over RSTP/UDP Sink/Source from imx board to pc and one imx board to other imx board.

I have tried the below command but after capture data on file i am not able to play the video

on server

gst-launch-1.0 imxv4l2videosrc device=/dev/video1 ! queue ! rndbuffersize max=1316 min=1316 ! udpsink host=192.168.2.102 port=1234 sync=false

on receiver

gst-launch-1.0 udpsrc port=1234 ! filesink location=check.mp4

Please suggest the right command

Thank you !!! :smileyhappy:

Labels (2)
0 Kudos
2 Replies

453 Views
niketsarda
Contributor II

Thank you for you support

we achieve gstreamer   through

gst-launch-1.0 imxv4l2videosrc device=/dev/video1 ! imxvpuenc_h264 ! rtph264pay ! queue ! rndbuffersize max=1316 min=1316 ! udpsink host=your_ip port=1234 sync=false

Thank you

0 Kudos

453 Views
Bio_TICFSL
NXP TechSupport
NXP TechSupport

Hi niket,

why don you try

linux side:

gst-launch-1.0 mfw_v4lsrc device=/dev/video1 fps-n=30 ! vpuenc codec=6 ! queue ! rtph264pay ! udpsink host=yourip port=5000 –v

pc side:

open the attached H264.sdp file using VLC. Then you can find the picture from camera on mx6 board, pls don’t forget to load camera module

0 Kudos