RTSP stream in deepstream-app has blank output window / 0 fps

The deepstream-app runs properly with the included .MP4 file. When I change the source to a known good RTSP stream, the Pipeline begins, but I get a blank output window with the console log reporting **PERF: FPS 0

GStreamer runs the feed successfully → sudo gst-launch-1.0 rtspsrc location=rtspt://x.x.x.x:5543 ! rtph264depay ! avdec_h264 ! autovideosink

The tiler was erroring out because of the lack of image, so I updated the config to use a single source and no tiling. This produced the blank output window.

VLC shows slight differences in the CODECS between the two sources:
Included MP4 file- Codec: H264 - MPEG-4 AVC (part 10) (avc1) 30 fps
RTSP Stream- Codec: H264 - MPEG-4 AVC (part 10) (h264) 30 fps Color space: ITU-R BT.709 Range

(Orientation and Chroma location are the same)

In case you want to evaluate the RTSP stream, I can provide the IP address and put a mapping in the firewall if you PM with me with the source public IP. It’s being generated by an Alibi camera.

The config file is included below.

Thanks,
Patrick

Copyright (c) 2018 NVIDIA Corporation. All rights reserved.

NVIDIA Corporation and its licensors retain all intellectual property

and proprietary rights in and to this software, related documentation

and any modifications thereto. Any use, reproduction, disclosure or

distribution of this software and related documentation without an express

license agreement from NVIDIA Corporation is strictly prohibited.

[application]
enable-perf-measurement=1
perf-measurement-interval-sec=5
#gie-kitti-output-dir=streamscl

[tiled-display]
enable=0
rows=2
columns=2
width=1280
height=720
gpu-id=0

0 - cuda pinned/host memory

1 - cuda device memory

2 - cuda unified memory

cuda-memory-type=1

[source0]
enable=1
#Type - 1=CameraV4L2 2=URI 3=MultiURI
type=2
#uri=file://…/…/streams/sample_720p.mp4
uri=rtspt://@x.x.x.x:5543

num-sources=1
gpu-id=0

0 - cuda pinned/host memory

1 - cuda device memory

2 - cuda unified memory

cuda-memory-type=1

[sink0]
enable=1
#Type - 1=FakeSink 2=EglSink 3=File
type=2
sync=1
source-id=0
gpu-id=0
cuda-memory-type=1

[sink1]
enable=0
type=3
#1=mp4 2=mkv
container=1
#1=h264 2=h265 3=mpeg4

only SW mpeg4 is supported right now.

codec=3
sync=0
bitrate=2000000
output-file=out.mp4
source-id=0

[sink2]
enable=0
#Type - 1=FakeSink 2=EglSink 3=File 4=RTSPStreaming
type=4
#1=mp4 2=mkv
container=2
#1=h264 2=h265 3=mpeg4

only mpeg4 is supported right now.

codec=1
sync=0
bitrate=4000

set below properties in case of RTSPStreaming

rtsp-port=8554
udp-port=5400

[osd]
enable=1
gpu-id=0
border-width=1
text-size=15
text-color=1;1;1;1;
text-bg-color=0.3;0.3;0.3;1
font=Arial
show-clock=0
clock-x-offset=800
clock-y-offset=820
clock-text-size=12
clock-color=1;0;0;0
cuda-memory-type=1

[streammux]
gpu-id=0
##Boolean property to inform muxer that sources are live
live-source=0
batch-size=4
##time out in usec, to wait after the first buffer is available
##to push the batch even if the complete batch is not formed
batched-push-timeout=40000

Set muxer output width and height

width=1280
height=720
##Enable to maintain aspect ratio wrt source, and allow black borders, works
##along with width, height properties
enable-padding=0
cuda-memory-type=1

config-file property is mandatory for any gie section.

Other properties are optional and if set will override the properties set in

the infer config file.

[primary-gie]
enable=1
gpu-id=0
model-engine-file=…/…/models/Primary_Detector/resnet10.caffemodel_b4_int8.engine
labelfile-path=…/…/models/Primary_Detector/labels.txt
batch-size=4
#Required by the app for OSD, not a plugin property
bbox-border-color0=1;0;0;1
bbox-border-color1=0;1;1;1
bbox-border-color2=0;0;1;1
bbox-border-color3=0;1;0;1
interval=0
gie-unique-id=1
cuda-memory-type=1
config-file=config_infer_primary.txt

[tracker]
enable=1
tracker-width=640
tracker-height=368
gpu-id=0

[secondary-gie0]
enable=1
model-engine-file=…/…/models/Secondary_VehicleTypes/resnet18.caffemodel_b16_int8.engine
labelfile-path=…/…/models/Secondary_VehicleTypes/labels.txt
gpu-id=0
batch-size=16
gie-unique-id=4
operate-on-gie-id=1
operate-on-class-ids=0;
config-file=config_infer_secondary_vehicletypes.txt

[secondary-gie1]
enable=1
model-engine-file=…/…/models/Secondary_CarColor/resnet18.caffemodel_b16_int8.engine
labelfile-path=…/…/models/Secondary_CarColor/labels.txt
batch-size=16
gpu-id=0
gie-unique-id=5
operate-on-gie-id=1
operate-on-class-ids=0;
config-file=config_infer_secondary_carcolor.txt

[secondary-gie2]
enable=1
model-engine-file=…/…/models/Secondary_CarMake/resnet18.caffemodel_b16_int8.engine
labelfile-path=…/…/models/Secondary_CarMake/labels.txt
batch-size=16
gpu-id=0
gie-unique-id=6
operate-on-gie-id=1
operate-on-class-ids=0;
config-file=config_infer_secondary_carmake.txt

[tests]
file-loop=0

The set up is on Ubuntu 18.04.02 LTS with a 2080TI.

The file://…/…/streams/sample_720p.h264 also runs properly.

There is difference in the callbacks. The .mp4 or .h264 file shows:

** INFO: <bus_callback:98>: Pipeline ready

** INFO: <bus_callback:84>: Pipeline running

**PERF: FPS 0 (Avg)
**PERF: 35.62 (35.62)

The RTSP stream shows:

** INFO: <bus_callback:98>: Pipeline ready

** INFO: <bus_callback:84>: Pipeline running

** INFO: <bus_callback:84>: Pipeline running

**PERF: FPS 0 (Avg)
**PERF: 0.00 (0.00)

So, an extra <bus_callback:84>, interesting.

Ubiquiti cameras exhibit the same behavior as the Alibi cameras with regard to their RTSP stream output.

The --gst-debug-level=4 is below:

0:00:00.000162260 24191 0x5572d74728c0 INFO GST_INIT gstmessage.c:127:_priv_gst_message_initialize: init messages
0:00:00.000372005 24191 0x5572d74728c0 INFO GST_INIT gstcontext.c:84:_priv_gst_context_initialize: init contexts
0:00:00.000461585 24191 0x5572d74728c0 INFO GST_PLUGIN_LOADING gstplugin.c:317:_priv_gst_plugin_initialize: registering 0 static plugins
0:00:00.000502581 24191 0x5572d74728c0 INFO GST_PLUGIN_LOADING gstplugin.c:225:gst_plugin_register_static: registered static plugin “staticelements”
0:00:00.000508373 24191 0x5572d74728c0 INFO GST_PLUGIN_LOADING gstplugin.c:227:gst_plugin_register_static: added static plugin “staticelements”, result: 1
0:00:00.000517960 24191 0x5572d74728c0 INFO GST_REGISTRY gstregistry.c:1727:ensure_current_registry: reading registry cache: /home/patrick/.cache/gstreamer-1.0/registry.x86_64.bin
0:00:00.000538360 24191 0x5572d74728c0 INFO GST_REGISTRY gstregistrybinary.c:539:priv_gst_registry_binary_read_cache: Unable to mmap file /home/patrick/.cache/gstreamer-1.0/registry.x86_64.bin : Failed to open file “/home/patrick/.cache/gstreamer-1.0/registry.x86_64.bin”: open() failed: Permission denied
0:00:00.000547062 24191 0x5572d74728c0 INFO GST_REGISTRY gstregistrybinary.c:549:priv_gst_registry_binary_read_cache: Unable to read file /home/patrick/.cache/gstreamer-1.0/registry.x86_64.bin : Failed to open file “/home/patrick/.cache/gstreamer-1.0/registry.x86_64.bin”: Permission denied
0:00:00.000551674 24191 0x5572d74728c0 INFO GST_REGISTRY gstregistry.c:1583:scan_and_update_registry: Validating plugins from registry cache: /home/patrick/.cache/gstreamer-1.0/registry.x86_64.bin
0:00:00.161206763 24191 0x5572d74728c0 INFO GST_REGISTRY gstregistry.c:1694:scan_and_update_registry: Registry cache changed. Writing new registry cache
0:00:00.161225886 24191 0x5572d74728c0 INFO GST_REGISTRY gstregistrybinary.c:369:priv_gst_registry_binary_write_cache: Building binary registry cache image
0:00:00.174047071 24191 0x5572d74728c0 INFO GST_REGISTRY gstregistrybinary.c:401:priv_gst_registry_binary_write_cache: Writing binary registry cache
0:00:00.174803159 24191 0x5572d74728c0 INFO GST_REGISTRY gstregistry.c:1762:ensure_current_registry: registry reading and updating done, result = 1
0:00:00.174814685 24191 0x5572d74728c0 WARN GST_REGISTRY gstregistry.c:1835:gst_update_registry: registry update failed: Error writing registry cache to /home/patrick/.cache/gstreamer-1.0/registry.x86_64.bin: Permission denied
0:00:00.174824677 24191 0x5572d74728c0 INFO GST_INIT gst.c:807:init_post: GLib runtime version: 2.56.3
0:00:00.174829809 24191 0x5572d74728c0 INFO GST_INIT gst.c:809:init_post: GLib headers version: 2.56.1
0:00:00.174833167 24191 0x5572d74728c0 INFO GST_INIT gst.c:810:init_post: initialized GStreamer successfully
0:00:00.175086024 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “pipeline” named “pipeline”
0:00:00.175127006 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “bin” named “multi_src_bin”
0:00:00.176324146 24191 0x5572d74728c0 INFO GST_PLUGIN_LOADING gstplugin.c:901:_priv_gst_plugin_load_file_for_registry: plugin “/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libnvdsgst_multistream.so” loaded
0:00:00.176333395 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “nvstreammux” named “src_bin_muxer”
0:00:00.176412348 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstNvStreamMux@0x5572d788a010 adding pad ‘src’
0:00:00.176429858 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “bin” named “src_sub_bin0”
0:00:00.177058059 24191 0x5572d74728c0 INFO GST_PLUGIN_LOADING gstplugin.c:901:_priv_gst_plugin_load_file_for_registry: plugin “/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstplayback.so” loaded
0:00:00.177065332 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “uridecodebin” named “src_elem”
0:00:00.177336533 24191 0x5572d74728c0 INFO GST_PLUGIN_LOADING gstplugin.c:901:_priv_gst_plugin_load_file_for_registry: plugin “/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcoreelements.so” loaded
0:00:00.177343794 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “queue” named “queue”
0:00:00.177386378 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstQueue@0x5572d7894090 adding pad ‘sink’
0:00:00.177396369 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstQueue@0x5572d7894090 adding pad ‘src’
0:00:00.177411764 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:920:gst_element_get_static_pad: found pad queue:src
0:00:00.177437748 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link queue:src and src:proxypad0
0:00:00.177445640 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked queue:src and src:proxypad0, successful
0:00:00.177448576 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.177452630 24191 0x5572d74728c0 INFO GST_EVENT gstpad.c:5785:gst_pad_send_event_unchecked:queue:src Received event on flushing pad. Discarding
0:00:00.177457972 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:<src_sub_bin0> adding pad ‘src’
0:00:00.177462147 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “fakesink” named “src_fakesink”
0:00:00.177511075 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstBaseSink@0x5572d76cdfe0 adding pad ‘sink’
0:00:00.177520535 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “queue” named “fakequeue”
0:00:00.177529220 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstQueue@0x5572d7894390 adding pad ‘sink’
0:00:00.177536690 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstQueue@0x5572d7894390 adding pad ‘src’
0:00:00.177542936 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:361:gst_element_factory_create: creating element “tee”
0:00:00.177569045 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstTee@0x5572d789d000 adding pad ‘sink’
0:00:00.177585038 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstutils.c:1774:gst_element_link_pads_full: trying to link element fakequeue:(any) to element src_fakesink:(any)
0:00:00.177589598 24191 0x5572d74728c0 INFO GST_PADS gstutils.c:1035:gst_pad_check_link: trying to link fakequeue:src and src_fakesink:sink
0:00:00.177596032 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:fakequeue:sink pad has no peer
0:00:00.177604377 24191 0x5572d74728c0 INFO GST_PADS gstutils.c:1588:prepare_link_maybe_ghosting: fakequeue and src_fakesink in same bin, no need for ghost pads
0:00:00.177610338 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link fakequeue:src and src_fakesink:sink
0:00:00.177616270 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:fakequeue:sink pad has no peer
0:00:00.177621938 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked fakequeue:src and src_fakesink:sink, successful
0:00:00.177625111 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.177628455 24191 0x5572d74728c0 INFO GST_EVENT gstpad.c:5785:gst_pad_send_event_unchecked:fakequeue:src Received event on flushing pad. Discarding
0:00:00.177661341 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad: adding pad ‘src_0’
0:00:00.177665875 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:920:gst_element_get_static_pad: found pad queue:sink
0:00:00.177670645 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link tee0:src_0 and queue:sink
0:00:00.177687419 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:tee0:sink pad has no peer
0:00:00.177692851 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<src_sub_bin0:src> pad has no peer
0:00:00.177697704 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked tee0:src_0 and queue:sink, successful
0:00:00.177700161 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.177703439 24191 0x5572d74728c0 INFO GST_EVENT gstpad.c:5785:gst_pad_send_event_unchecked:tee0:src_0 Received event on flushing pad. Discarding
0:00:00.177727216 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad: adding pad ‘src_1’
0:00:00.177732922 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:920:gst_element_get_static_pad: found pad fakequeue:sink
0:00:00.177752367 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link tee0:src_1 and fakequeue:sink
0:00:00.177756509 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:tee0:sink pad has no peer
0:00:00.177777713 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked tee0:src_1 and fakequeue:sink, successful
0:00:00.177780940 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.177784395 24191 0x5572d74728c0 INFO GST_EVENT gstpad.c:5785:gst_pad_send_event_unchecked:tee0:src_1 Received event on flushing pad. Discarding
0:00:00.177803780 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:917:gst_element_get_static_pad: no such pad ‘sink_0’ in element “src_bin_muxer”
0:00:00.177845950 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:<src_bin_muxer> adding pad ‘sink_0’
0:00:00.177851470 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:920:gst_element_get_static_pad: found pad src_sub_bin0:src
0:00:00.177857120 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link src_sub_bin0:src and src_bin_muxer:sink_0
0:00:00.177862948 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:tee0:sink pad has no peer
0:00:00.177869124 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<src_bin_muxer:src> pad has no peer
0:00:00.177885049 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked src_sub_bin0:src and src_bin_muxer:sink_0, successful
0:00:00.177901316 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.177904297 24191 0x5572d74728c0 INFO GST_EVENT gstpad.c:5785:gst_pad_send_event_unchecked:<src_sub_bin0:src> Received event on flushing pad. Discarding
0:00:00.177909128 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:920:gst_element_get_static_pad: found pad src_bin_muxer:src
0:00:00.177934607 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link src_bin_muxer:src and src:proxypad1
0:00:00.177939064 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked src_bin_muxer:src and src:proxypad1, successful
0:00:00.177941544 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.177944193 24191 0x5572d74728c0 INFO GST_EVENT gstpad.c:5785:gst_pad_send_event_unchecked:<src_bin_muxer:src> Received event on flushing pad. Discarding
0:00:00.177961458 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:<multi_src_bin> adding pad ‘src’
0:00:00.177998745 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “nvstreamdemux” named “demuxer”
0:00:00.178055779 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstNvStreamDemux@0x5572d789e090 adding pad ‘sink’
0:00:00.178067509 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “bin” named “processing_bin_0”
0:00:00.178077676 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “bin” named “sink_bin”
0:00:00.178084625 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “queue” named “sink_bin_queue”
0:00:00.178094116 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstQueue@0x5572d7894690 adding pad ‘sink’
0:00:00.178102326 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstQueue@0x5572d7894690 adding pad ‘src’
0:00:00.178111704 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:920:gst_element_get_static_pad: found pad sink_bin_queue:sink
0:00:00.178121231 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link sink:proxypad2 and sink_bin_queue:sink
0:00:00.178125799 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked sink:proxypad2 and sink_bin_queue:sink, successful
0:00:00.178128905 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.178134289 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:<sink_bin> adding pad ‘sink’
0:00:00.178138674 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “tee” named “sink_bin_tee”
0:00:00.178147738 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstTee@0x5572d789d150 adding pad ‘sink’
0:00:00.178156584 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstutils.c:1774:gst_element_link_pads_full: trying to link element sink_bin_queue:(any) to element sink_bin_tee:(any)
0:00:00.178161465 24191 0x5572d74728c0 INFO GST_PADS gstutils.c:1035:gst_pad_check_link: trying to link sink_bin_queue:src and sink_bin_tee:sink
0:00:00.178166817 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<sink_bin:sink> pad has no peer
0:00:00.178173057 24191 0x5572d74728c0 INFO GST_PADS gstutils.c:1588:prepare_link_maybe_ghosting: sink_bin_queue and sink_bin_tee in same bin, no need for ghost pads
0:00:00.178178304 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link sink_bin_queue:src and sink_bin_tee:sink
0:00:00.178183004 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<sink_bin:sink> pad has no peer
0:00:00.178188980 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked sink_bin_queue:src and sink_bin_tee:sink, successful
0:00:00.178192087 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.178200350 24191 0x5572d74728c0 INFO GST_EVENT gstpad.c:5785:gst_pad_send_event_unchecked:<sink_bin_queue:src> Received event on flushing pad. Discarding
0:00:00.178209851 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “bin” named “sink_sub_bin1”
0:00:00.178219118 24191 0x5572d74728c0 INFO NVDS_APP deepstream_sink_bin.c:50:create_render_bin: NVvideo renderer

0:00:00.178721788 24191 0x5572d74728c0 INFO GST_PLUGIN_LOADING gstplugin.c:901:_priv_gst_plugin_load_file_for_registry: plugin “/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libnvdsgst_eglglessink.so” loaded
0:00:00.178729317 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “nveglglessink” named “sink_sub_bin_sink1”
0:00:00.178788613 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstBaseSink@0x5572d76f35f0 adding pad ‘sink’
0:00:00.178814883 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “capsfilter” named “sink_sub_bin_cap_filter1”
0:00:00.178850181 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstBaseTransform@0x5572d78a8340 adding pad ‘sink’
0:00:00.178858726 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstBaseTransform@0x5572d78a8340 adding pad ‘src’
0:00:00.179088402 24191 0x5572d74728c0 INFO GST_PLUGIN_LOADING gstplugin.c:901:_priv_gst_plugin_load_file_for_registry: plugin “/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libnvdsgst_vidconv.so” loaded
0:00:00.179095628 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “nvvidconv” named “sink_sub_bin_transform1”
0:00:00.179134808 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstBaseTransform@0x5572d776dad0 adding pad ‘sink’
0:00:00.179142859 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstBaseTransform@0x5572d776dad0 adding pad ‘src’
0:00:00.179154298 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.179164096 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “queue” named “render_queue1”
0:00:00.179174480 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstQueue@0x5572d7894990 adding pad ‘sink’
0:00:00.179183116 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstQueue@0x5572d7894990 adding pad ‘src’
0:00:00.179195590 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstutils.c:1774:gst_element_link_pads_full: trying to link element sink_sub_bin_cap_filter1:(any) to element sink_sub_bin_sink1:(any)
0:00:00.179201082 24191 0x5572d74728c0 INFO GST_PADS gstutils.c:1035:gst_pad_check_link: trying to link sink_sub_bin_cap_filter1:src and sink_sub_bin_sink1:sink
0:00:00.179207401 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<sink_sub_bin_cap_filter1:sink> pad has no peer
0:00:00.179226479 24191 0x5572d74728c0 INFO GST_PADS gstutils.c:1588:prepare_link_maybe_ghosting: sink_sub_bin_cap_filter1 and sink_sub_bin_sink1 in same bin, no need for ghost pads
0:00:00.179232770 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link sink_sub_bin_cap_filter1:src and sink_sub_bin_sink1:sink
0:00:00.179237114 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<sink_sub_bin_cap_filter1:sink> pad has no peer
0:00:00.179250404 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked sink_sub_bin_cap_filter1:src and sink_sub_bin_sink1:sink, successful
0:00:00.179253847 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.179257371 24191 0x5572d74728c0 INFO GST_EVENT gstpad.c:5785:gst_pad_send_event_unchecked:<sink_sub_bin_cap_filter1:src> Received event on flushing pad. Discarding
0:00:00.179263666 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstutils.c:1774:gst_element_link_pads_full: trying to link element sink_sub_bin_transform1:(any) to element sink_sub_bin_cap_filter1:(any)
0:00:00.179268380 24191 0x5572d74728c0 INFO GST_PADS gstutils.c:1035:gst_pad_check_link: trying to link sink_sub_bin_transform1:src and sink_sub_bin_cap_filter1:sink
0:00:00.179272420 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<sink_sub_bin_transform1:sink> pad has no peer
0:00:00.179315348 24191 0x5572d74728c0 INFO GST_PADS gstutils.c:1588:prepare_link_maybe_ghosting: sink_sub_bin_transform1 and sink_sub_bin_cap_filter1 in same bin, no need for ghost pads
0:00:00.179321320 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link sink_sub_bin_transform1:src and sink_sub_bin_cap_filter1:sink
0:00:00.179325449 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<sink_sub_bin_transform1:sink> pad has no peer
0:00:00.179361410 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked sink_sub_bin_transform1:src and sink_sub_bin_cap_filter1:sink, successful
0:00:00.179365010 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.179368481 24191 0x5572d74728c0 INFO GST_EVENT gstpad.c:5785:gst_pad_send_event_unchecked:<sink_sub_bin_transform1:src> Received event on flushing pad. Discarding
0:00:00.179374208 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstutils.c:1774:gst_element_link_pads_full: trying to link element render_queue1:(any) to element sink_sub_bin_transform1:(any)
0:00:00.179378808 24191 0x5572d74728c0 INFO GST_PADS gstutils.c:1035:gst_pad_check_link: trying to link render_queue1:src and sink_sub_bin_transform1:sink
0:00:00.179383139 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<render_queue1:sink> pad has no peer
0:00:00.179422879 24191 0x5572d74728c0 INFO GST_PADS gstutils.c:1588:prepare_link_maybe_ghosting: render_queue1 and sink_sub_bin_transform1 in same bin, no need for ghost pads
0:00:00.179428330 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link render_queue1:src and sink_sub_bin_transform1:sink
0:00:00.179432701 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<render_queue1:sink> pad has no peer
0:00:00.179471114 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked render_queue1:src and sink_sub_bin_transform1:sink, successful
0:00:00.179474687 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.179478171 24191 0x5572d74728c0 INFO GST_EVENT gstpad.c:5785:gst_pad_send_event_unchecked:<render_queue1:src> Received event on flushing pad. Discarding
0:00:00.179483511 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:920:gst_element_get_static_pad: found pad render_queue1:sink
0:00:00.179494250 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link sink:proxypad3 and render_queue1:sink
0:00:00.179498630 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked sink:proxypad3 and render_queue1:sink, successful
0:00:00.179501827 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.179506849 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:<sink_sub_bin1> adding pad ‘sink’
0:00:00.179522255 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:<sink_bin_tee> adding pad ‘src_0’
0:00:00.179527047 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:920:gst_element_get_static_pad: found pad sink_sub_bin1:sink
0:00:00.179532158 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link sink_bin_tee:src_0 and sink_sub_bin1:sink
0:00:00.179537737 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<sink_bin:sink> pad has no peer
0:00:00.179585002 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked sink_bin_tee:src_0 and sink_sub_bin1:sink, successful
0:00:00.179588770 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.179592240 24191 0x5572d74728c0 INFO GST_EVENT gstpad.c:5785:gst_pad_send_event_unchecked:<sink_bin_tee:src_0> Received event on flushing pad. Discarding
0:00:00.179607754 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “bin” named “osd_bin”
0:00:00.179616421 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “nvvidconv” named “osd_conv”
0:00:00.179624608 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstBaseTransform@0x5572d7753cd0 adding pad ‘sink’
0:00:00.179631128 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstBaseTransform@0x5572d7753cd0 adding pad ‘src’
0:00:00.179636491 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “queue” named “osd_queue”
0:00:00.179645731 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstQueue@0x5572d7894c90 adding pad ‘sink’
0:00:00.179654102 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstQueue@0x5572d7894c90 adding pad ‘src’
0:00:00.181350937 24191 0x5572d74728c0 INFO GST_PLUGIN_LOADING gstplugin.c:901:_priv_gst_plugin_load_file_for_registry: plugin “/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libnvdsgst_osd.so” loaded
0:00:00.181358718 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “nvosd” named “nvosd0”
0:00:00.181393438 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstBaseTransform@0x5572d77174d0 adding pad ‘sink’
0:00:00.181406165 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstBaseTransform@0x5572d77174d0 adding pad ‘src’
0:00:00.181429229 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstutils.c:1774:gst_element_link_pads_full: trying to link element osd_queue:(any) to element osd_conv:(any)
0:00:00.181434933 24191 0x5572d74728c0 INFO GST_PADS gstutils.c:1035:gst_pad_check_link: trying to link osd_queue:src and osd_conv:sink
0:00:00.181440361 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<osd_queue:sink> pad has no peer
0:00:00.181445957 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<osd_conv:src> pad has no peer
0:00:00.181476592 24191 0x5572d74728c0 INFO GST_PADS gstutils.c:1588:prepare_link_maybe_ghosting: osd_queue and osd_conv in same bin, no need for ghost pads
0:00:00.181483067 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link osd_queue:src and osd_conv:sink
0:00:00.181487457 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<osd_queue:sink> pad has no peer
0:00:00.181492080 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<osd_conv:src> pad has no peer
0:00:00.181518491 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked osd_queue:src and osd_conv:sink, successful
0:00:00.181522087 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.181525674 24191 0x5572d74728c0 INFO GST_EVENT gstpad.c:5785:gst_pad_send_event_unchecked:<osd_queue:src> Received event on flushing pad. Discarding
0:00:00.181531758 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstutils.c:1774:gst_element_link_pads_full: trying to link element osd_conv:(any) to element nvosd0:(any)
0:00:00.181536312 24191 0x5572d74728c0 INFO GST_PADS gstutils.c:1035:gst_pad_check_link: trying to link osd_conv:src and nvosd0:sink
0:00:00.181540637 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<osd_queue:sink> pad has no peer
0:00:00.181565574 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:nvosd0:src pad has no peer
0:00:00.181575631 24191 0x5572d74728c0 INFO GST_PADS gstutils.c:1588:prepare_link_maybe_ghosting: osd_conv and nvosd0 in same bin, no need for ghost pads
0:00:00.181581095 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link osd_conv:src and nvosd0:sink
0:00:00.181585623 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<osd_queue:sink> pad has no peer
0:00:00.181609840 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:nvosd0:src pad has no peer
0:00:00.181618967 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked osd_conv:src and nvosd0:sink, successful
0:00:00.181622336 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.181625783 24191 0x5572d74728c0 INFO GST_EVENT gstpad.c:5785:gst_pad_send_event_unchecked:<osd_conv:src> Received event on flushing pad. Discarding
0:00:00.181631418 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:920:gst_element_get_static_pad: found pad osd_queue:sink
0:00:00.181642429 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link sink:proxypad4 and osd_queue:sink
0:00:00.181646779 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked sink:proxypad4 and osd_queue:sink, successful
0:00:00.181649771 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.181655242 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:<osd_bin> adding pad ‘sink’
0:00:00.181659507 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:920:gst_element_get_static_pad: found pad nvosd0:src
0:00:00.181668816 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link nvosd0:src and src:proxypad5
0:00:00.181673186 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked nvosd0:src and src:proxypad5, successful
0:00:00.181676175 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.181680111 24191 0x5572d74728c0 INFO GST_EVENT gstpad.c:5785:gst_pad_send_event_unchecked:nvosd0:src Received event on flushing pad. Discarding
0:00:00.181685021 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:<osd_bin> adding pad ‘src’
0:00:00.181696262 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstutils.c:1774:gst_element_link_pads_full: trying to link element osd_bin:(any) to element sink_bin:(any)
0:00:00.181701023 24191 0x5572d74728c0 INFO GST_PADS gstutils.c:1035:gst_pad_check_link: trying to link osd_bin:src and sink_bin:sink
0:00:00.181707134 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<osd_bin:sink> pad has no peer
0:00:00.181778232 24191 0x5572d74728c0 INFO GST_PADS gstutils.c:1588:prepare_link_maybe_ghosting: osd_bin and sink_bin in same bin, no need for ghost pads
0:00:00.181784174 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link osd_bin:src and sink_bin:sink
0:00:00.181789983 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<osd_bin:sink> pad has no peer
0:00:00.181857828 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked osd_bin:src and sink_bin:sink, successful
0:00:00.181861702 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.181865428 24191 0x5572d74728c0 INFO GST_EVENT gstpad.c:5785:gst_pad_send_event_unchecked:<osd_bin:src> Received event on flushing pad. Discarding
0:00:00.181871051 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:920:gst_element_get_static_pad: found pad osd_bin:sink
0:00:00.181880793 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link sink:proxypad6 and osd_bin:sink
0:00:00.181885025 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked sink:proxypad6 and osd_bin:sink, successful
0:00:00.181888139 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.181892813 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:<processing_bin_0> adding pad ‘sink’
0:00:00.181896834 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:920:gst_element_get_static_pad: found pad nvosd0:sink
0:00:00.181917609 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:917:gst_element_get_static_pad: no such pad ‘src_00’ in element “demuxer”
0:00:00.181926457 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad: adding pad ‘src_00’
0:00:00.181931008 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:920:gst_element_get_static_pad: found pad demuxer:src_00
0:00:00.181934669 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:920:gst_element_get_static_pad: found pad processing_bin_0:sink
0:00:00.181939884 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link demuxer:src_00 and processing_bin_0:sink
0:00:00.182013625 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked demuxer:src_00 and processing_bin_0:sink, successful
0:00:00.182017748 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.182024226 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:920:gst_element_get_static_pad: found pad demuxer:sink
0:00:00.182028865 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “bin” named “secondary_gie_bin”
0:00:00.182039326 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “tee” named “secondary_gie_bin_tee”
0:00:00.182049904 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstTee@0x5572d789d2a0 adding pad ‘sink’
0:00:00.182059623 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “queue” named “secondary_gie_bin_queue”
0:00:00.182068836 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstQueue@0x5572d7894f90 adding pad ‘sink’
0:00:00.182078480 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstQueue@0x5572d7894f90 adding pad ‘src’
0:00:00.182087838 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:920:gst_element_get_static_pad: found pad secondary_gie_bin_queue:src
0:00:00.182092157 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:920:gst_element_get_static_pad: found pad secondary_gie_bin_tee:sink
0:00:00.182095713 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:920:gst_element_get_static_pad: found pad secondary_gie_bin_tee:sink
0:00:00.182104614 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link sink:proxypad7 and secondary_gie_bin_tee:sink
0:00:00.182109026 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked sink:proxypad7 and secondary_gie_bin_tee:sink, successful
0:00:00.182112213 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.182116737 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:<secondary_gie_bin> adding pad ‘sink’
0:00:00.182120820 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:920:gst_element_get_static_pad: found pad secondary_gie_bin_queue:src
0:00:00.182133983 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link secondary_gie_bin_queue:src and src:proxypad8
0:00:00.182138616 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked secondary_gie_bin_queue:src and src:proxypad8, successful
0:00:00.182141739 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.182145181 24191 0x5572d74728c0 INFO GST_EVENT gstpad.c:5785:gst_pad_send_event_unchecked:<secondary_gie_bin_queue:src> Received event on flushing pad. Discarding
0:00:00.182150044 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:<secondary_gie_bin> adding pad ‘src’
0:00:00.182157837 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:<secondary_gie_bin_tee> adding pad ‘src_0’
0:00:00.182161959 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:920:gst_element_get_static_pad: found pad secondary_gie_bin_queue:sink
0:00:00.182166905 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link secondary_gie_bin_tee:src_0 and secondary_gie_bin_queue:sink
0:00:00.182172248 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<secondary_gie_bin:sink> pad has no peer
0:00:00.182178266 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<secondary_gie_bin:src> pad has no peer
0:00:00.182183539 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked secondary_gie_bin_tee:src_0 and secondary_gie_bin_queue:sink, successful
0:00:00.182186784 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.182190098 24191 0x5572d74728c0 INFO GST_EVENT gstpad.c:5785:gst_pad_send_event_unchecked:<secondary_gie_bin_tee:src_0> Received event on flushing pad. Discarding
0:00:00.182199762 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “queue” named “secondary_gie_0_queue”
0:00:00.182227773 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstQueue@0x5572d7895290 adding pad ‘sink’
0:00:00.182250114 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstQueue@0x5572d7895290 adding pad ‘src’
0:00:00.187148381 24191 0x5572d74728c0 INFO GST_PLUGIN_LOADING gstplugin.c:901:_priv_gst_plugin_load_file_for_registry: plugin “/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libnvdsgst_infer.so” loaded
0:00:00.187156312 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “nvinfer” named “secondary_gie_0”
0:00:00.187229128 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstBaseTransform@0x5572d79231d0 adding pad ‘sink’
0:00:00.187252653 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstBaseTransform@0x5572d79231d0 adding pad ‘src’
0:00:00.187257170 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:920:gst_element_get_static_pad: found pad (null):sink
0:00:00.187418717 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “fakesink” named “secondary_gie_0_sink”
0:00:00.187431496 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstBaseSink@0x5572d790ecb0 adding pad ‘sink’
0:00:00.187442888 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstutils.c:1774:gst_element_link_pads_full: trying to link element secondary_gie_0_queue:(any) to element secondary_gie_0:(any)
0:00:00.187447639 24191 0x5572d74728c0 INFO GST_PADS gstutils.c:1035:gst_pad_check_link: trying to link secondary_gie_0_queue:src and secondary_gie_0:sink
0:00:00.187452375 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<secondary_gie_0_queue:sink> pad has no peer
0:00:00.187458772 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<secondary_gie_0:src> pad has no peer
0:00:00.187470011 24191 0x5572d74728c0 INFO GST_PADS gstutils.c:1588:prepare_link_maybe_ghosting: secondary_gie_0_queue and secondary_gie_0 in same bin, no need for ghost pads
0:00:00.187488497 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link secondary_gie_0_queue:src and secondary_gie_0:sink
0:00:00.187492537 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<secondary_gie_0_queue:sink> pad has no peer
0:00:00.187496336 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<secondary_gie_0:src> pad has no peer
0:00:00.187519994 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked secondary_gie_0_queue:src and secondary_gie_0:sink, successful
0:00:00.187523394 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.187526382 24191 0x5572d74728c0 INFO GST_EVENT gstpad.c:5785:gst_pad_send_event_unchecked:<secondary_gie_0_queue:src> Received event on flushing pad. Discarding
0:00:00.187531823 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstutils.c:1774:gst_element_link_pads_full: trying to link element secondary_gie_0:(any) to element secondary_gie_0_sink:(any)
0:00:00.187549204 24191 0x5572d74728c0 INFO GST_PADS gstutils.c:1035:gst_pad_check_link: trying to link secondary_gie_0:src and secondary_gie_0_sink:sink
0:00:00.187553021 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<secondary_gie_0_queue:sink> pad has no peer
0:00:00.187576969 24191 0x5572d74728c0 INFO GST_PADS gstutils.c:1588:prepare_link_maybe_ghosting: secondary_gie_0 and secondary_gie_0_sink in same bin, no need for ghost pads
0:00:00.187582201 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link secondary_gie_0:src and secondary_gie_0_sink:sink
0:00:00.187586167 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<secondary_gie_0_queue:sink> pad has no peer
0:00:00.187595334 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked secondary_gie_0:src and secondary_gie_0_sink:sink, successful
0:00:00.187598654 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.187601359 24191 0x5572d74728c0 INFO GST_EVENT gstpad.c:5785:gst_pad_send_event_unchecked:<secondary_gie_0:src> Received event on flushing pad. Discarding
0:00:00.187606725 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “queue” named “secondary_gie_1_queue”
0:00:00.187617068 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstQueue@0x5572d7895590 adding pad ‘sink’
0:00:00.187625187 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstQueue@0x5572d7895590 adding pad ‘src’
0:00:00.187633905 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “nvinfer” named “secondary_gie_1”
0:00:00.187649884 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstBaseTransform@0x5572d7931880 adding pad ‘sink’
0:00:00.187656435 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstBaseTransform@0x5572d7931880 adding pad ‘src’
0:00:00.187660414 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:920:gst_element_get_static_pad: found pad (null):sink
0:00:00.187743981 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “fakesink” named “secondary_gie_1_sink”
0:00:00.187754169 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstBaseSink@0x5572d7900ed0 adding pad ‘sink’
0:00:00.187764519 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstutils.c:1774:gst_element_link_pads_full: trying to link element secondary_gie_1_queue:(any) to element secondary_gie_1:(any)
0:00:00.187769519 24191 0x5572d74728c0 INFO GST_PADS gstutils.c:1035:gst_pad_check_link: trying to link secondary_gie_1_queue:src and secondary_gie_1:sink
0:00:00.187774364 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<secondary_gie_1_queue:sink> pad has no peer
0:00:00.187779694 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<secondary_gie_1:src> pad has no peer
0:00:00.187789369 24191 0x5572d74728c0 INFO GST_PADS gstutils.c:1588:prepare_link_maybe_ghosting: secondary_gie_1_queue and secondary_gie_1 in same bin, no need for ghost pads
0:00:00.187794981 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link secondary_gie_1_queue:src and secondary_gie_1:sink
0:00:00.187799214 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<secondary_gie_1_queue:sink> pad has no peer
0:00:00.187803583 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<secondary_gie_1:src> pad has no peer
0:00:00.187811927 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked secondary_gie_1_queue:src and secondary_gie_1:sink, successful
0:00:00.187815189 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.187818452 24191 0x5572d74728c0 INFO GST_EVENT gstpad.c:5785:gst_pad_send_event_unchecked:<secondary_gie_1_queue:src> Received event on flushing pad. Discarding
0:00:00.187824115 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstutils.c:1774:gst_element_link_pads_full: trying to link element secondary_gie_1:(any) to element secondary_gie_1_sink:(any)
0:00:00.187828880 24191 0x5572d74728c0 INFO GST_PADS gstutils.c:1035:gst_pad_check_link: trying to link secondary_gie_1:src and secondary_gie_1_sink:sink
0:00:00.187833290 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<secondary_gie_1_queue:sink> pad has no peer
0:00:00.187842600 24191 0x5572d74728c0 INFO GST_PADS gstutils.c:1588:prepare_link_maybe_ghosting: secondary_gie_1 and secondary_gie_1_sink in same bin, no need for ghost pads
0:00:00.187847670 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link secondary_gie_1:src and secondary_gie_1_sink:sink
0:00:00.187852060 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<secondary_gie_1_queue:sink> pad has no peer
0:00:00.187861125 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked secondary_gie_1:src and secondary_gie_1_sink:sink, successful
0:00:00.187864445 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.187867728 24191 0x5572d74728c0 INFO GST_EVENT gstpad.c:5785:gst_pad_send_event_unchecked:<secondary_gie_1:src> Received event on flushing pad. Discarding
0:00:00.187877391 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:<secondary_gie_bin_tee> adding pad ‘src_1’
0:00:00.187882008 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:920:gst_element_get_static_pad: found pad secondary_gie_0_queue:sink
0:00:00.187886685 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link secondary_gie_bin_tee:src_1 and secondary_gie_0_queue:sink
0:00:00.187892168 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<secondary_gie_bin:sink> pad has no peer
0:00:00.187903870 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked secondary_gie_bin_tee:src_1 and secondary_gie_0_queue:sink, successful
0:00:00.187907510 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.187910749 24191 0x5572d74728c0 INFO GST_EVENT gstpad.c:5785:gst_pad_send_event_unchecked:<secondary_gie_bin_tee:src_1> Received event on flushing pad. Discarding
0:00:00.187919492 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:<secondary_gie_bin_tee> adding pad ‘src_2’
0:00:00.187923757 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:920:gst_element_get_static_pad: found pad secondary_gie_1_queue:sink
0:00:00.187928444 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link secondary_gie_bin_tee:src_2 and secondary_gie_1_queue:sink
0:00:00.187933264 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<secondary_gie_bin:sink> pad has no peer
0:00:00.187944412 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked secondary_gie_bin_tee:src_2 and secondary_gie_1_queue:sink, successful
0:00:00.187947841 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.187951242 24191 0x5572d74728c0 INFO GST_EVENT gstpad.c:5785:gst_pad_send_event_unchecked:<secondary_gie_bin_tee:src_2> Received event on flushing pad. Discarding
0:00:00.187967333 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “bin” named “tracking_bin”
0:00:00.188734309 24191 0x5572d74728c0 INFO GST_PLUGIN_LOADING gstplugin.c:901:_priv_gst_plugin_load_file_for_registry: plugin “/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libnvdsgst_tracker.so” loaded
0:00:00.188741831 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “nvtracker” named “tracking_tracker”
0:00:00.188781220 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstBaseTransform@0x5572d790e620 adding pad ‘sink’
0:00:00.188789417 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstBaseTransform@0x5572d790e620 adding pad ‘src’
0:00:00.188803192 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:920:gst_element_get_static_pad: found pad tracking_tracker:sink
0:00:00.188813937 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link sink:proxypad9 and tracking_tracker:sink
0:00:00.188819237 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked sink:proxypad9 and tracking_tracker:sink, successful
0:00:00.188822467 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.188828001 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:<tracking_bin> adding pad ‘sink’
0:00:00.188832255 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:920:gst_element_get_static_pad: found pad tracking_tracker:src
0:00:00.189909929 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link tracking_tracker:src and src:proxypad10
0:00:00.189919588 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked tracking_tracker:src and src:proxypad10, successful
0:00:00.189924648 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.189929714 24191 0x5572d74728c0 INFO GST_EVENT gstpad.c:5785:gst_pad_send_event_unchecked:<tracking_tracker:src> Received event on flushing pad. Discarding
0:00:00.189938061 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:<tracking_bin> adding pad ‘src’
0:00:00.189953763 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstutils.c:1774:gst_element_link_pads_full: trying to link element tracking_bin:(any) to element secondary_gie_bin:(any)
0:00:00.189961176 24191 0x5572d74728c0 INFO GST_PADS gstutils.c:1035:gst_pad_check_link: trying to link tracking_bin:src and secondary_gie_bin:sink
0:00:00.189970076 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<tracking_bin:sink> pad has no peer
0:00:00.189990401 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<secondary_gie_bin:src> pad has no peer
0:00:00.190020732 24191 0x5572d74728c0 INFO GST_PADS gstutils.c:1588:prepare_link_maybe_ghosting: tracking_bin and secondary_gie_bin in same bin, no need for ghost pads
0:00:00.190029439 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link tracking_bin:src and secondary_gie_bin:sink
0:00:00.190036998 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<tracking_bin:sink> pad has no peer
0:00:00.190052458 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<secondary_gie_bin:src> pad has no peer
0:00:00.190079786 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked tracking_bin:src and secondary_gie_bin:sink, successful
0:00:00.190084716 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.190089434 24191 0x5572d74728c0 INFO GST_EVENT gstpad.c:5785:gst_pad_send_event_unchecked:<tracking_bin:src> Received event on flushing pad. Discarding
0:00:00.190098149 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “bin” named “primary_gie_bin”
0:00:00.190116225 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “nvvidconv” named “primary_gie_conv”
0:00:00.190127663 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstBaseTransform@0x5572d790bcc0 adding pad ‘sink’
0:00:00.190136963 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstBaseTransform@0x5572d790bcc0 adding pad ‘src’
0:00:00.190145251 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “queue” named “primary_gie_queue”
0:00:00.190162721 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstQueue@0x5572d7895890 adding pad ‘sink’
0:00:00.190175332 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstQueue@0x5572d7895890 adding pad ‘src’
0:00:00.190184757 24191 0x5572d74728c0 INFO GST_ELEMENT_FACTORY gstelementfactory.c:359:gst_element_factory_create: creating element “nvinfer” named “primary_gie_classifier”
0:00:00.190204690 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstBaseTransform@0x5572d7949d00 adding pad ‘sink’
0:00:00.190234252 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:GstBaseTransform@0x5572d7949d00 adding pad ‘src’
0:00:00.190240994 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:920:gst_element_get_static_pad: found pad (null):sink
0:00:00.190378713 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstutils.c:1774:gst_element_link_pads_full: trying to link element primary_gie_queue:(any) to element primary_gie_conv:(any)
0:00:00.190387367 24191 0x5572d74728c0 INFO GST_PADS gstutils.c:1035:gst_pad_check_link: trying to link primary_gie_queue:src and primary_gie_conv:sink
0:00:00.190394583 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<primary_gie_queue:sink> pad has no peer
0:00:00.190401808 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<primary_gie_conv:src> pad has no peer
0:00:00.190448585 24191 0x5572d74728c0 INFO GST_PADS gstutils.c:1588:prepare_link_maybe_ghosting: primary_gie_queue and primary_gie_conv in same bin, no need for ghost pads
0:00:00.190456908 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link primary_gie_queue:src and primary_gie_conv:sink
0:00:00.190463386 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<primary_gie_queue:sink> pad has no peer
0:00:00.190469937 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<primary_gie_conv:src> pad has no peer
0:00:00.190510759 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked primary_gie_queue:src and primary_gie_conv:sink, successful
0:00:00.190515621 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.190520519 24191 0x5572d74728c0 INFO GST_EVENT gstpad.c:5785:gst_pad_send_event_unchecked:<primary_gie_queue:src> Received event on flushing pad. Discarding
0:00:00.190528839 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstutils.c:1774:gst_element_link_pads_full: trying to link element primary_gie_conv:(any) to element primary_gie_classifier:(any)
0:00:00.190535472 24191 0x5572d74728c0 INFO GST_PADS gstutils.c:1035:gst_pad_check_link: trying to link primary_gie_conv:src and primary_gie_classifier:sink
0:00:00.190541820 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<primary_gie_queue:sink> pad has no peer
0:00:00.190581943 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<primary_gie_classifier:src> pad has no peer
0:00:00.190595838 24191 0x5572d74728c0 INFO GST_PADS gstutils.c:1588:prepare_link_maybe_ghosting: primary_gie_conv and primary_gie_classifier in same bin, no need for ghost pads
0:00:00.190603298 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link primary_gie_conv:src and primary_gie_classifier:sink
0:00:00.190609945 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<primary_gie_queue:sink> pad has no peer
0:00:00.190649453 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:4230:gst_pad_peer_query:<primary_gie_classifier:src> pad has no peer
0:00:00.190663453 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked primary_gie_conv:src and primary_gie_classifier:sink, successful
0:00:00.190668205 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.190672930 24191 0x5572d74728c0 INFO GST_EVENT gstpad.c:5785:gst_pad_send_event_unchecked:<primary_gie_conv:src> Received event on flushing pad. Discarding
0:00:00.190680301 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:920:gst_element_get_static_pad: found pad primary_gie_classifier:src
0:00:00.190695674 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link primary_gie_classifier:src and src:proxypad11
0:00:00.190701985 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked primary_gie_classifier:src and src:proxypad11, successful
0:00:00.190706358 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.190711393 24191 0x5572d74728c0 INFO GST_EVENT gstpad.c:5785:gst_pad_send_event_unchecked:<primary_gie_classifier:src> Received event on flushing pad. Discarding
0:00:00.190717881 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:670:gst_element_add_pad:<primary_gie_bin> adding pad ‘src’
0:00:00.190723794 24191 0x5572d74728c0 INFO GST_ELEMENT_PADS gstelement.c:920:gst_element_get_static_pad: found pad primary_gie_queue:sink
0:00:00.190744484 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2378:gst_pad_link_prepare: trying to link sink:proxypad12 and primary_gie_queue:sink
0:00:00.190750187 24191 0x5572d74728c0 INFO GST_PADS gstpad.c:2586:gst_pad_link_full: linked sink:proxypad12 and primary_gie_queue:sink, successful
0:00:00.190753891 24191 0x5572d74728c0 INFO GST_EVENT gstevent.c:1517:gst_event_new_reconfigure: creating reconfigure event
0:00:00.190759862 24191 0x557

Full log at: Deleted

Can you only enable source and sink, disable others? Can it be successful?

Are you referring to below section of the config file? It looks like I only have 1 source and 1 sink.

Patrick

[source0]
enable=1
#Type - 1=CameraV4L2 2=URI 3=MultiURI
type=2
#uri=file://…/…/streams/sample_720p.mp4
uri=rtspt://@x.x.x.x:5543

num-sources=1
gpu-id=0

0 - cuda pinned/host memory

1 - cuda device memory

2 - cuda unified memory

cuda-memory-type=1

[sink0]
enable=1
#Type - 1=FakeSink 2=EglSink 3=File
type=2
sync=1
source-id=0
gpu-id=0
cuda-memory-type=1

[sink1]
enable=0
type=3
#1=mp4 2=mkv
container=1
#1=h264 2=h265 3=mpeg4

only SW mpeg4 is supported right now.

codec=3
sync=0
bitrate=2000000
output-file=out.mp4
source-id=0

[sink2]
enable=0
#Type - 1=FakeSink 2=EglSink 3=File 4=RTSPStreaming
type=4
#1=mp4 2=mkv
container=2
#1=h264 2=h265 3=mpeg4

only mpeg4 is supported right now.

codec=1
sync=0
bitrate=4000

set below properties in case of RTSPStreaming

rtsp-port=8554
udp-port=5400

Did you able to solve it??

@ChrisDing , it didnt worked??

Can you set sync=0 in [sink0] group for rtsp input?