GStreamer NVIDIA plugins #4291
Closed
SheldonWBM
started this conversation in
General
Replies: 1 comment
-
I solved it. Removed gstreamer dependencies from [activation.env]
DEEPSTREAM_DIR = "/opt/nvidia/deepstream/current"
# Explicitly include standard system library paths to resolve DeepStream
# GStreamer plugin dependencies.
SYSTEM_LD_PATH = "/usr/lib/x86_64-linux-gnu:/lib/x86_64-linux-gnu"
LD_LIBRARY_PATH = "${LD_LIBRARY_PATH}:${SYSTEM_LD_PATH}"
GST_PLUGIN_PATH = "/opt/nvidia/deepstream/current/lib/gst-plugins:${GST_PLUGIN_PATH}"
# Add path for GObject Introspection repository files (.typelib)
GI_TYPELIB_PATH = "/usr/lib/x86_64-linux-gnu/girepository-1.0:${GI_TYPELIB_PATH}"
SYSTEM_PYTHON_PATHS = "/usr/lib/python3/dist-packages:/usr/local/lib/python3.10/dist-packages"
PYTHONPATH = "/opt/nvidia/deepstream/current/lib:${SYSTEM_PYTHON_PATHS}:${PYTHONPATH}" If anyone has a more elegant solution that increases environment isolation, I would welcome the feedback. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Has anyone tried to get the NVIDIA GStreamer plugins to work in a pixi environment?
NVENC (i.e. nvh264enc) for ordinary desktop x86 GPUs? I have production Jetsons still using traditional requirements.txt
Even with DeepStream fully installed in the container, when running in a pixi environment, the GStreamer NVIDIA plugins are not available.
I have also tried to compile the GStreamer plugins as a task in pixi (into the pixi env), but, does not work.
I know it is not traditionally available
i.e.
A simple compilation script I could add as a task?
Beta Was this translation helpful? Give feedback.
All reactions