Following gstreamer command can’t display the video properly:
gst-launch-1.0 nvv4l2camerasrc device=/dev/video0 \
! 'video/x-raw(memory:NVMM), format=(string)UYVY, width=(int)2592, height=(int)1944, framerate=(fraction)28/1' \
! nvvidconv \
! 'video/x-raw(memory:NVMM), format=(string)NV12' \
! nv3dsink -e
This video screen captured:
But the gstreamer command below works fine.
gst-launch-1.0 nvv4l2camerasrc device=/dev/video0 \
! 'video/x-raw(memory:NVMM), format=(string)UYVY, width=(int)2560, height=(int)1440, framerate=(fraction)38/1' \
! nvvidconv \
! 'video/x-raw(memory:NVMM), format=(string)NV12' \
! nv3dsink -e
What’s wrong with it?
Is it the same issue I reported at the link below?