Hello,
I use this docker image : nvcr.io/nvidia/deepstream:6.0-devel on RTX 3070 with this driver version ( 470.161.03 )
My pipeline is similar ( coding in c++ )
gst-launch-1.0 -v shmsrc socket-path = “/dev/shm/input” is-live=true ! “video/x-raw, format=NV12, width=(int)1280, height=(int)720, framerate=(fraction)60/1” ! queue !
nvvideoconvert src-crop = “784:168”:488"384" ! nvv4l2h264enc ! h264parse ! mpegtsmux alignment=7 ! rtpmp2tpay ! udpsink host=$HOST port=5000
I reconfigure the src-crop parameter of the nvvvideoconverter plugin at regular intervals, but my pipeline freezes. can we reconfigure this setting without putting the pipeline in the Paused state and then playing
The values of the src-crop parameter come from a video tracking module
how to crop dynamically ?