Skip to content

Instantly share code, notes, and snippets.

@syedmustafa54
Created May 10, 2022 00:36
Show Gist options
  • Save syedmustafa54/1e3fe76bf4140727230c20f43ac3bb1c to your computer and use it in GitHub Desktop.
Save syedmustafa54/1e3fe76bf4140727230c20f43ac3bb1c to your computer and use it in GitHub Desktop.
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Syed", //I named it syed because i can
"type": "cppdbg",
"request": "launch",
"program": "/opt/nvidia/deepstream/deepstream-6.0/sources/apps/sample_apps/deepstream-test1-rtsp/deepstream-test1-app",
"args": ["../../../../samples/streams/sample_720p.h264"],
"stopAtEntry": false,
"cwd": "/opt/nvidia/deepstream/deepstream-6.0/sources/apps/sample_apps/deepstream-test1-rtsp/",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
},
{
"name": "(gdb) Attach",
"type": "cppdbg",
"request": "launch",
"program": "/opt/nvidia/deepstream/deepstream-6.0/sources/apps/sample_apps/deepstream-test1-rtsp/deepstream-test1-app",
"MIMode": "gdb",
"stopAtEntry": false,
"args": ["../../../../samples/streams/sample_720p.h264"],
"cwd": "/opt/nvidia/deepstream/deepstream-6.0/sources/apps/sample_apps/deepstream-test1-rtsp/",
},
{
"name": "Test 1 Python",
"type": "python",
"request": "launch",
"program": "${file}",
"args":["../../../../samples/streams/sample_720p.h264"],
"console": "integratedTerminal",
"cwd": "/opt/nvidia/deepstream/deepstream-6.0/sources/deepstream_python_apps/apps/deepstream-test1"
},
{
"name": "rtsp Python",
"type": "python",
"request": "launch",
"program": "${file}",
"args":["-i","../../../../samples/streams/sample_720p.h264"],
"console": "integratedTerminal",
"cwd": "/opt/nvidia/deepstream/deepstream-6.0/sources/deepstream_python_apps/apps/deepstream-rtsp-in-rtsp-out"
},
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment