Hi, I´ve been able to inference four videos and to see them through RTSP stream, but I would like to know how I can create a stream for each video, I´m thinking in using 10 videos, and I don´t want an output as a collage, How can I work with them in parallel, but stream the output individually?
Regards
Hi,
You may utilize nvstreamdemux . Please check the topics:
Hi,
Yes, you can use nvstreamdemux. We have demonstration in deepstream-app. Please disable [tiled-display] and set source-id in [sink*] accordingly. Below config file is FYR.
# Copyright (c) 2019 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 relate…
Hi,
Please identify sink* with source-id. Below is a sample of 2 sources with 2 EglSink + 2 Encode + File Save.
[sink0]
enable=1
#Type - 1=FakeSink 2=EglSink 3=File
type=2
sync=0
<b>source-id=0</b>
gpu-id=0
qos=0
nvbuf-memory-type=0
overlay-id=1
[sink1]
enable=1
type=3
#1=mp4 2=mkv
container=1
#1=h264 2=h265
codec=1
sync=0
#iframeinterval=10
bitrate=2000000
output-file=out.mp4
<b>source-id=0</b>
[sink2]
enable=1
#Type - 1=FakeSink 2=EglSink 3=File
type=2
sync=0
<b>source-id=1</b>
gpu-id=0
qo…
Thanks @DaneLLL . Appreciated.
Regards.