作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 ffmpeg 读取 rtsp 相机。我收到一个错误:ffmpeg rtsp 错误:C++ 中的服务器回复中的传输不匹配”和“处理输入时发现无效数据”。相机设置了“RTP ES”。这是代码。
source_name = "rtsp://192.168.1.108/WESCAM";
// Open the initial context variables that are needed
format_ctx = avformat_alloc_context();
codec_ctx = NULL;
// Register everything
av_register_all();
avformat_network_init();
//open RTSP camera or h264 file
if (avformat_open_input(&format_ctx, source_name, NULL, NULL) != 0)
{
return EXIT_FAILURE;
}
最佳答案
这可能会有所帮助:
AVDictionary *opts = nullptr;
av_dict_set(&opts, "rtsp_transport", "udp", 0); // here "udp" can replaced by "tcp"
avformat_open_input(&pFormatCtx, rtsp_addr, nullptr, &opts);
...
av_dict_free(&opts);
关于ffmpeg rtsp 错误 : Nonmatching transport in server reply,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45554594/
我正在使用 ffmpeg 读取 rtsp 相机。我收到一个错误:ffmpeg rtsp 错误:C++ 中的服务器回复中的传输不匹配”和“处理输入时发现无效数据”。相机设置了“RTP ES”。这是代码。
我买了一个便宜的中国网络摄像机(GWIPC-26xxx/Yoosee)。我想用 ffmpeg 记录它的流。 在 FFMPEG 上,我设法让它工作 仅限 使用 RTSP/UDP 传输协议(protoco
我在 Windows 10 上使用 python 3.6.4,通过 pip 安装了 opencv (3.4)。这是我正在使用的代码: import numpy as np import cv2 cap
我在 Windows 上使用 Python 3.6.4。我已经通过 pip 安装了 OpenCV (3.4)。这是我正在使用的代码: import numpy as np import cv2 cap
我是一名优秀的程序员,十分优秀!