我对如何将视频流保存到mp4文件感到困惑。我正在使用ffmpeg。让我解释一下这个问题:
问题是,如果我尝试使用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);
非常感谢你,
答案 0 :(得分:-1)
首先:当您使用相机时,最好通过TCP上的RTP(TCP作为传输协议)。 要启用此功能:
AVDictionary *ifmtdict;
av_dict_set(&ifmtdict, "rtsp_transport", "tcp", 0);
...
avformat_open_input (..., &ifmtdict);
第二: 数据包开始后,等待第一个关键帧并从此刻开始写入文件。