Please provide complete information as applicable to your setup.
• Hardware Platform GPU
• DeepStream Version 6.1
• Issue Type questions
Hi, I’m trying to write a parallel inference demo using python, I found some reference repo on github:
the first one was written in C, so i build a pipeline like it does expect I didn’t use metamux which only provides a .so file in this repo. Instead, I use fakesink for both branch.
the result is confusing, the first branch is normal, its fps is alright and can also be displayed if change to nveglglessink. However, the second branch always has 0 fps.
**PERF: {'stream0': 25.09}
**PERF: {'stream0': 0.0}
**PERF: {'stream0': 24.99}
**PERF: {'stream0': 0.0}
**PERF: {'stream0': 24.98}
**PERF: {'stream0': 0.0}
**PERF: {'stream0': 25.18}
then I change the sink property asycn which was set to false before. If asycn was true, the whole pipeline just stuck at first frame.
So is the plugin metamux necessary if I don’t need to mux the outputs. Why only the first branch of tee has fps.
Thanks in advance.