Hello,everyone.
I have a IRcamera connected on TX2 with Gige and capture the 14 bit datas from camera.
I want to encode those datas using Gstreamers,could someone give me some advices and methods.
Hello,everyone.
I have a IRcamera connected on TX2 with Gige and capture the 14 bit datas from camera.
I want to encode those datas using Gstreamers,could someone give me some advices and methods.
Hi, we support I420 10 bit in HEVC encoding.
gst-launch-1.0 nvcamerasrc fpsRange="30.0 30.0" ! \
'video/x-raw(memory:NVMM), width=(int)1920, height=(int)1080, \
format=(string)I420, framerate=(fraction)30/1' ! nvtee ! \
nvvidconv ! 'video/x-raw(memory:NVMM), format=(string)I420_10LE' !
omxh265enc ! matroskamux ! filesink location=test_10bit.mkv -e
Above is the sample pipeline in https://developer.nvidia.com/embedded/dlc/l4t-accelerated-gstreamer-guide-28-2-ga
How about 14Bit gray datas?
Hi,
It is not supported.
Thank you for your reply.