Multistream deepstream_test_3

Hi,
I want to run python deepstream_test_3.py (Deepstream SDK 5.0) with two IP cameras. The output is one frame including each camera at the left and right sides of the output.
Is it possible to have a separate frame for each camera?

Many thanks

You may remove the tiler component from the sample. how tiler works, please check,
https://docs.nvidia.com/metropolis/deepstream/dev-guide/index.html#page/DeepStream%20Plugins%20Development%20Guide/deepstream_plugin_details.html#wwpID0E0PX0HA

Thank you for your answer.
When I want to capture frames with a probe based on the deepstream_test_3.py example with the following code:

n_frame = pyds.get_nvds_buf_surface(hash(gst_buffer), frame_meta.batch_id)

the result is not a tiler of two camera, it gives me only one camera view.
I would appreciate it if you help me how I can get both of them separately or even in one frame with tiler_src_pad_buffer_probe() function.
Many thanks in advance

You can get all the batched buffer, by providing all the batch_id to get_nvds_buf_surface through frame_meta.batch_id, one by one, in a loop, not a tiler frame.