将网络摄像机(RTSP)中的帧保存到mp4文件中

Saving frames from a network camera (RTSP) to a mp4 file

本文关键字:保存 mp4 文件 摄像机 RTSP 网络      更新时间:2023-10-16

我很困惑如何将视频流保存到mp4文件中。我正在使用ffmpeg。让我来解释一下问题:

  1. 我使用avformat_open_input()、avformat_find_stream_info()、av_read_play()通过RTSP(H.264流)连接到网络摄像机,并使用av_read_frame()获取帧
  2. 每次我用av_read_frame()获得一个帧时,我都会将相应的AVPacket存储在一个循环缓冲区中
  3. 在我的应用程序中的某些地方,会选择一个循环缓冲区的范围。我找到了一个用来开始的关键帧
  4. 一旦我有了一个从关键帧开始的AVPacket列表,我就会写标题、帧和尾部,正如我在下面的代码中所描述的那样

问题是,如果我尝试使用VLC、Windows Media Player或其他视频观看,那么生成的mp4视频会出现瑕疵。

我还意识到,数据包的pts不是连续的,而dts是连续的。我知道B帧,但这对我来说是个问题吗?

// Prepare the output
AVFormatContext* oc = avformat_alloc_context();
oc->oformat = av_guess_format(NULL, "video.mp4", NULL);
// Must write header, packets, and trailing
avio_open2(&oc->pb, "video.mp4", AVIO_FLAG_WRITE, NULL, NULL);
// Write header
AVStream* stream = avformat_new_stream(oc, (AVCodec*) context->streams[video_stream_index]->codec->codec);
avcodec_copy_context(stream->codec, context->streams[video_stream_index]->codec);
stream->sample_aspect_ratio = context->streams[video_stream_index]->codec->sample_aspect_ratio;
avformat_write_header(oc, NULL);
// FOR EACH FRAME...
... av_write_frame(oc, circular[k]); ...
// Write trailer and close the file
av_write_trailer(oc);
avcodec_close(stream->codec);
avio_close(oc->pb);
avformat_free_context(oc);

非常感谢,

首先:当您使用相机时,最好通过TCP上的RTP(TCP作为传输协议)进行工作。启用此功能:

AVDictionary *ifmtdict;
av_dict_set(&ifmtdict, "rtsp_transport", "tcp", 0);
...
avformat_open_input (..., &ifmtdict);

第二:数据包开始到来后,等待第一个关键帧,并从此时开始写入文件。