标签: nvidia-deepstream

在 ubuntu 18.04 上使用 libnvinfer7 库(Cuda 10.2)安装 TensorRT 面临的问题

我试图在 ubuntu 18.4 (nv-tensorrt-repo-ubuntu1804-cuda10.2-trt7.0.0.11-ga-20191216_1-1_amd64.deb) debian 中安装 tensorRT 7.0。

遵循文档https://docs.nvidia.com/deeplearning/tensorrt/install-guide/index.html#installing-debian

我在使用 libnvinfer7 时遇到以下错误。在这个星球上寻找这个,无法找到,浪费了我的时间和睡眠。请帮我解决这个问题:

 amarnath@amarnath-Precision-T3610:/opt/pixuate$ sudo apt install tensorrt
    Reading package lists... Done
    Building dependency tree       
    Reading state information... Done
    Some packages could not be installed. This may mean that you have
    requested an impossible situation or if you are using the unstable
    distribution that some required packages have not yet been created
    or been moved out of Incoming.
    The following information may help to resolve the situation:

    The following …
Run Code Online (Sandbox Code Playgroud)

nvidia tensorrt nvidia-deepstream

8
推荐指数
1
解决办法
8135
查看次数

重新连接 Gstreamer 管道中的 RTSP 流

我有一个使用 RTSP 输入流的工作 Gstreamer 管道。为了处理这些给定的 RTSP 输入流,使用了 uridecobin 元素。

我的目标是当互联网连接不稳定时重新连接到 RTSP 输入流。当互联网连接仅断开几秒钟然后又恢复时,管道再次开始接收帧,一切正常。当互联网连接中断超过 20 秒时,我会收到 GST_MESSAGE_EOS。我试图在 uridecodebin 生成的每个元素中找到一些超时变量,但没有找到。您是否有任何提示哪个元素具有此超时变量以及如何设置它?

如果无法设置这样的超时变量,有没有办法阻止GST_MESSAGE_EOS?因为当我在总线中收到 GST_MESSAGE_EOS 时,我尝试从管道中删除 uridecodebin 并创建一个新管道。但当收到 GST_MESSAGE_EOS 时,它对我不起作用(当我尝试从管道中删除 uridecodebin 并在正常状态下创建一个新管道时,它起作用)。

c gstreamer gstreamer-1.0 nvidia-deepstream

5
推荐指数
1
解决办法
1963
查看次数