Hello,
i am trying to record video using following pipeline which is working fine:
pipeline 1:
gst-launch-1.0 -v v4l2src device=“/dev/video3” do-timestamp=true ! video/x-raw,width=640,height=480,framerate=30/1,format=I420 ! x264enc tune=zerolatency key-int-max=30 ! rtph264pay ! shmsink socket-path=/tmp/test shm-size=10000000 sync=true wait-for-connection=false
pipeline 2:
gst-launch-1.0 -v -e shmsrc socket-path=/tmp/test is-live=true do-timestamp=true ! application/x-rtp,clock-rate=90000 ! rtph264depay ! h264parse ! matroskamux ! filesink location=parth.mkv sync=false
now if i change the encoder to omxh264enc i am not abel to play the recorded video. please let me know what can change so it can record and working fine.