封装FFmpeg从本地文件Rtsp内存中读取并用OpenCV显示

前言:

首先,OpenCV自带的读取视频的接口(VideoCapture)可以直接读取264视频格式,这点是要知道的的,为了程序的健壮性,我们尝试一下FFMPEG,因工作需要所以专门来了解一下,记住一点(rtsp方式的时候要用tcp方式从网络中读取视频)。

准备:

环境:注意不需要编译源码,真的不需要编译。

到官网https://ffmpeg.zeranoe.com/builds/直接下载,三个全部下载 Staic(配置环境变量到path,.exe在cmd下直接运行,测试命令,ffplay  run.mp4,前提要能找到这个文件),Share(dll,放到VS工程目录下),Dev(include,lib,VS配置的库目录和包含目录(配置过opencv的都知道吧))

解压过之后应该是这样的。

代码:

环境配置好,把里面文件

  • 3
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
要实现这个功能,首先需要安装FFmpegOpenCV库。然后可以按照以下步骤进行操作: 1. 导入头文件 ```c++ #include <iostream> #include <opencv2/core/core.hpp> #include <opencv2/highgui/highgui.hpp> #include <opencv2/imgproc/imgproc.hpp> #include <opencv2/videoio.hpp> #include "ffmpeg.h" ``` 2. 定义回调函数 ```c++ void display_frame(cv::Mat frame) { cv::imshow("Video", frame); cv::waitKey(1); } ``` 3. 定义获取视频流的函数 ```c++ void get_stream(const std::string& url) { AVFormatContext* format_ctx = avformat_alloc_context(); AVDictionary* options_dict = NULL; av_dict_set(&options_dict, "rtsp_transport", "tcp", 0); av_dict_set(&options_dict, "stimeout", "5000000", 0); av_dict_set(&options_dict, "max_delay", "500000", 0); av_dict_set(&options_dict, "buffer_size", "1024000", 0); av_dict_set(&options_dict, "rtbufsize", "1024000", 0); av_dict_set(&options_dict, "max_delay", "500000", 0); avformat_open_input(&format_ctx, url.c_str(), NULL, &options_dict); avformat_find_stream_info(format_ctx, NULL); AVCodec* codec = nullptr; int stream_index = av_find_best_stream(format_ctx, AVMEDIA_TYPE_VIDEO, -1, -1, &codec, 0); AVCodecContext* codec_ctx = avcodec_alloc_context3(codec); avcodec_parameters_to_context(codec_ctx, format_ctx->streams[stream_index]->codecpar); avcodec_open2(codec_ctx, codec, NULL); AVPacket* packet = av_packet_alloc(); AVFrame* frame = av_frame_alloc(); while (av_read_frame(format_ctx, packet) >= 0) { if (packet->stream_index == stream_index) { avcodec_send_packet(codec_ctx, packet); while (avcodec_receive_frame(codec_ctx, frame) == 0) { cv::Mat mat(frame->height, frame->width, CV_8UC3, frame->data[0]); cv::cvtColor(mat, mat, cv::COLOR_BGR2RGB); display_frame(mat); av_frame_unref(frame); } } av_packet_unref(packet); } av_packet_free(&packet); av_frame_free(&frame); avcodec_close(codec_ctx); avcodec_free_context(&codec_ctx); avformat_close_input(&format_ctx); } ``` 4. 调用函数播放视频流 ```c++ int main() { std::string url = "rtsp://xxx.xxx.xxx.xxx:xxxx/xxx"; get_stream(url); return 0; } ``` 这样就可以获取RTSP视频流并使用OpenCV显示图像了。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值