Please provide complete information as applicable to your setup.
**• Hardware Platform (Jetson / GPU)**AGX Xavier
• DeepStream Version5.0
**• JetPack Version (valid for Jetson only)**4.4
The example gst pipeline in here:
> gst-launch-1.0 filesrc location= <mp4-file> ! qtdemux ! h264parse ! nvv4l2decoder ! m.sink_0 nvstreammux name=m batch-size=1 width=1280 height=720 ! nvinfer config-file-path= <primary-detector-config> ! nvvideoconvert ! dsexample full-frame=0 <other-properties> ! nvdsosd ! nvegltransform ! nveglglessink
all make sense to me except the following two elements:
- why do we need ‘m.sink_0 nvstreammux name=m batch-size=1 width=1280 height=720’ ? if we don’t need to change width/height, could we skip this element?
- why do we need nvvideoconvert between nvinfer and dsexample?
Thanks.