42 lines
1.7 KiB
Plaintext
Executable File
42 lines
1.7 KiB
Plaintext
Executable File
*****************************************************************************
|
|
* 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.
|
|
*****************************************************************************
|
|
|
|
*****************************************************************************
|
|
deepstream-app
|
|
README
|
|
*****************************************************************************
|
|
Follow these procedures to use the deepstream-app application for native
|
|
compilation.
|
|
|
|
You must have the following development packages installed
|
|
|
|
GStreamer-1.0
|
|
GStreamer-1.0 Base Plugins
|
|
GStreamer-1.0 gstrtspserver
|
|
X11 client-side library
|
|
Glib json library - json-glib-1.0
|
|
|
|
1. To install these packages, execute the following command:
|
|
sudo apt-get install libgstreamer-plugins-base1.0-dev libgstreamer1.0-dev \
|
|
libgstrtspserver-1.0-dev libx11-dev libjson-glib-dev
|
|
|
|
2. Build the sources by executing the command:
|
|
|
|
$ Set CUDA_VER in the MakeFile as per platform.
|
|
For Jetson, CUDA_VER=10.2
|
|
For x86, CUDA_VER=11.4
|
|
$ sudo make
|
|
|
|
3. Run the application by executing the command:
|
|
./deepstream-app -c <config-file>
|
|
|
|
Please refer "../../apps-common/includes/deepstream_config.h" to modify
|
|
application parameters like maximum number of sources etc.
|