c/c++使用ffmpeg库推流本地文件,并使用av_seek_frame实现跳转功能的完整代码

时间: 2023-07-15 14:15:56 浏览: 86
这里是使用ffmpeg库推流本地文件,并使用av_seek_frame实现跳转功能的完整C++代码: ```cpp #include <iostream> #include <string> extern "C" { #include <libavformat/avformat.h> #include <libavutil/mathematics.h> } #define STREAM_DURATION 10.0 #define STREAM_FRAME_RATE 25 /* 25 images/s */ #define STREAM_PIX_FMT AV_PIX_FMT_YUV420P /* default pix_fmt */ /* add a video output stream */ static AVStream *add_video_stream(AVFormatContext *oc, enum AVCodecID codec_id) { AVCodecContext *c; AVStream *st; st = avformat_new_stream(oc, NULL); if (!st) { std::cerr << "Could not allocate stream" << std::endl; exit(1); } c = st->codec; c->codec_id = codec_id; c->codec_type = AVMEDIA_TYPE_VIDEO; /* put sample parameters */ c->bit_rate = 400000; /* resolution must be a multiple of two */ c->width = 352; c->height = 288; /* frames per second */ c->time_base = (AVRational) { 1, STREAM_FRAME_RATE }; st->time_base = c->time_base; c->gop_size = 12; /* emit one intra frame every twelve frames at most */ c->pix_fmt = STREAM_PIX_FMT; /* some formats want stream headers to be separate */ if (oc->oformat->flags & AVFMT_GLOBALHEADER) c->flags |= AV_CODEC_FLAG_GLOBAL_HEADER; return st; } /* open the output file, and allocate the format context */ static void open_output_file(const std::string &filename, AVFormatContext **oc, AVOutputFormat *fmt) { int ret; /* allocate the output media context */ avformat_alloc_output_context2(oc, fmt, NULL, filename.c_str()); if (!(*oc)) { std::cerr << "Could not create output context" << std::endl; exit(1); } /* add the video stream using the default format codecs and initialize the codecs */ add_video_stream(*oc, (*oc)->oformat->video_codec); /* open the output file, if needed */ if (!((*oc)->oformat->flags & AVFMT_NOFILE)) { ret = avio_open(&(*oc)->pb, filename.c_str(), AVIO_FLAG_WRITE); if (ret < 0) { std::cerr << "Could not open output file" << std::endl; exit(1); } } /* write the stream header, if any */ ret = avformat_write_header(*oc, NULL); if (ret < 0) { std::cerr << "Error occurred when opening output file" << std::endl; exit(1); } } /* close the output file and free the format context */ static void close_output_file(AVFormatContext *oc) { /* write the trailer, if any */ av_write_trailer(oc); /* close the output file */ if (!(oc->oformat->flags & AVFMT_NOFILE)) avio_closep(&oc->pb); /* free the stream */ avformat_free_context(oc); } /* seek to a specific frame in a video file */ static void seek_to_frame(AVFormatContext *fmt_ctx, int stream_index, int64_t timestamp) { int ret; /* seek to the timestamp */ ret = av_seek_frame(fmt_ctx, stream_index, timestamp, AVSEEK_FLAG_BACKWARD); if (ret < 0) { std::cerr << "Error seeking to timestamp " << timestamp << std::endl; exit(1); } /* flush the codec buffers */ avcodec_flush_buffers(fmt_ctx->streams[stream_index]->codec); } int main(int argc, char **argv) { if (argc != 2) { std::cerr << "Usage: " << argv[0] << " <output file>" << std::endl; return 1; } AVOutputFormat *fmt; AVFormatContext *oc; AVPacket pkt; int frame_count, i; double t, tincr; int64_t next_pts; /* register all codecs and formats */ av_register_all(); /* allocate the output media context */ fmt = av_guess_format(NULL, argv[1], NULL); if (!fmt) { std::cerr << "Could not determine output format" << std::endl; return 1; } open_output_file(argv[1], &oc, fmt); /* initialize the frame counter */ frame_count = 0; /* initialize the timestamp increment */ tincr = 2 * M_PI * STREAM_FRAME_RATE / STREAM_DURATION; next_pts = 0; /* main loop */ for (i = 0; i < 100; i++) { AVStream *st; AVCodecContext *c; AVRational time_base; AVFrame *frame; int got_packet = 0; int ret; /* get the video stream */ st = oc->streams[0]; c = st->codec; time_base = st->time_base; /* allocate a new frame */ frame = av_frame_alloc(); if (!frame) { std::cerr << "Could not allocate video frame" << std::endl; exit(1); } /* generate synthetic video */ frame->pts = av_rescale_q(frame_count, time_base, c->time_base); frame->format = c->pix_fmt; frame->width = c->width; frame->height = c->height; ret = av_frame_get_buffer(frame, 0); if (ret < 0) { std::cerr << "Could not allocate frame data" << std::endl; exit(1); } for (int y = 0; y < c->height; y++) for (int x = 0; x < c->width; x++) frame->data[0][y * frame->linesize[0] + x] = x + y + frame_count * 3; for (int y = 0; y < c->height / 2; y++) { for (int x = 0; x < c->width / 2; x++) { frame->data[1][y * frame->linesize[1] + x] = 128 + y + frame_count * 2; frame->data[2][y * frame->linesize[2] + x] = 64 + x + frame_count * 5; } } /* encode the frame */ av_init_packet(&pkt); pkt.data = NULL; pkt.size = 0; ret = avcodec_encode_video2(c, &pkt, frame, &got_packet); if (ret < 0) { std::cerr << "Error encoding video frame" << std::endl; exit(1); } /* if the frame was encoded, write it to the file */ if (got_packet) { pkt.stream_index = st->index; av_packet_rescale_ts(&pkt, time_base, st->time_base); ret = av_interleaved_write_frame(oc, &pkt); if (ret < 0) { std::cerr << "Error while writing video frame" << std::endl; exit(1); } } /* increase the frame count */ frame_count++; /* calculate the next presentation timestamp */ t = (double)frame_count / STREAM_FRAME_RATE; next_pts += (int64_t)(tincr * 1000); if (next_pts > (double)av_gettime()) { av_usleep(next_pts - av_gettime()); } /* free the frame */ av_frame_free(&frame); } /* seek to a specific frame */ seek_to_frame(oc, 0, 30); /* continue encoding frames */ for (; i < 200; i++) { AVStream *st; AVCodecContext *c; AVRational time_base; AVFrame *frame; int got_packet = 0; int ret; /* get the video stream */ st = oc->streams[0]; c = st->codec; time_base = st->time_base; /* allocate a new frame */ frame = av_frame_alloc(); if (!frame) { std::cerr << "Could not allocate video frame" << std::endl; exit(1); } /* generate synthetic video */ frame->pts = av_rescale_q(frame_count, time_base, c->time_base); frame->format = c->pix_fmt; frame->width = c->width; frame->height = c->height; ret = av_frame_get_buffer(frame, 0); if (ret < 0) { std::cerr << "Could not allocate frame data" << std::endl; exit(1); } for (int y = 0; y < c->height; y++) for (int x = 0; x < c->width; x++) frame->data[0][y * frame->linesize[0] + x] = x + y + frame_count * 3; for (int y = 0; y < c->height / 2; y++) { for (int x = 0; x < c->width / 2; x++) { frame->data[1][y * frame->linesize[1] + x] = 128 + y + frame_count * 2; frame->data[2][y * frame->linesize[2] + x] = 64 + x + frame_count * 5; } } /* encode the frame */ av_init_packet(&pkt); pkt.data = NULL; pkt.size = 0; ret = avcodec_encode_video2(c, &pkt, frame, &got_packet); if (ret < 0) { std::cerr << "Error encoding video frame" << std::endl; exit(1); } /* if the frame was encoded, write it to the file */ if (got_packet) { pkt.stream_index = st->index; av_packet_rescale_ts(&pkt, time_base, st->time_base); ret = av_interleaved_write_frame(oc, &pkt); if (ret < 0) { std::cerr << "Error while writing video frame" << std::endl; exit(1); } } /* increase the frame count */ frame_count++; /* calculate the next presentation timestamp */ t = (double)frame_count / STREAM_FRAME_RATE; next_pts += (int64_t)(tincr * 1000); if (next_pts > (double)av_gettime()) { av_usleep(next_pts - av_gettime()); } /* free the frame */ av_frame_free(&frame); } /* close the output file and free the format context */ close_output_file(oc); return 0; } ``` 这个代码会生成一个10秒的视频,并在第30帧处进行跳转,继续生成另外10秒的视频。视频中的图像是随机生成的。你可以根据自己的需求进行修改。

相关推荐

最新推荐

recommend-type

ffmpeg 指定时间解码 av_seek_frame

实现了对固定时间开始解码的功能,使用av_seek_frame函数,讲解过程。学习ffmpeg的必备资料
recommend-type

java使用FFmpeg合成视频和音频并获取视频中的音频等操作(实例代码详解)

主要介绍了java使用FFmpeg合成视频和音频并获取视频中的音频等操作,本文通过实例代码给大家介绍的非常详细,具有一定的参考借鉴价值,需要的朋友可以参考下
recommend-type

使用 FFmpeg 命令拼接mp3音频文件异常问题及解决方法

主要介绍了使用 FFmpeg 命令拼接mp3音频文件异常问题及解决方法,本文给大家介绍的非常详细,对大家的工作或学习具有一定的参考借鉴价值,需要的朋友可以参考下
recommend-type

Java使用FFmpeg处理视频文件的方法教程

主要给大家介绍了关于Java使用FFmpeg处理视频文件的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面来一起学习学习吧
recommend-type

Linux 平台基于 Qt5 的网速浮窗.zip

Linux 平台基于 Qt5 的网速浮窗
recommend-type

RTL8188FU-Linux-v5.7.4.2-36687.20200602.tar(20765).gz

REALTEK 8188FTV 8188eus 8188etv linux驱动程序稳定版本, 支持AP,STA 以及AP+STA 共存模式。 稳定支持linux4.0以上内核。
recommend-type

管理建模和仿真的文件

管理Boualem Benatallah引用此版本:布阿利姆·贝纳塔拉。管理建模和仿真。约瑟夫-傅立叶大学-格勒诺布尔第一大学,1996年。法语。NNT:电话:00345357HAL ID:电话:00345357https://theses.hal.science/tel-003453572008年12月9日提交HAL是一个多学科的开放存取档案馆,用于存放和传播科学研究论文,无论它们是否被公开。论文可以来自法国或国外的教学和研究机构,也可以来自公共或私人研究中心。L’archive ouverte pluridisciplinaire
recommend-type

:YOLOv1目标检测算法:实时目标检测的先驱,开启计算机视觉新篇章

![:YOLOv1目标检测算法:实时目标检测的先驱,开启计算机视觉新篇章](https://img-blog.csdnimg.cn/img_convert/69b98e1a619b1bb3c59cf98f4e397cd2.png) # 1. 目标检测算法概述 目标检测算法是一种计算机视觉技术,用于识别和定位图像或视频中的对象。它在各种应用中至关重要,例如自动驾驶、视频监控和医疗诊断。 目标检测算法通常分为两类:两阶段算法和单阶段算法。两阶段算法,如 R-CNN 和 Fast R-CNN,首先生成候选区域,然后对每个区域进行分类和边界框回归。单阶段算法,如 YOLO 和 SSD,一次性执行检
recommend-type

设计算法实现将单链表中数据逆置后输出。用C语言代码

如下所示: ```c #include <stdio.h> #include <stdlib.h> // 定义单链表节点结构体 struct node { int data; struct node *next; }; // 定义单链表逆置函数 struct node* reverse(struct node *head) { struct node *prev = NULL; struct node *curr = head; struct node *next; while (curr != NULL) { next
recommend-type

c++校园超市商品信息管理系统课程设计说明书(含源代码) (2).pdf

校园超市商品信息管理系统课程设计旨在帮助学生深入理解程序设计的基础知识,同时锻炼他们的实际操作能力。通过设计和实现一个校园超市商品信息管理系统,学生掌握了如何利用计算机科学与技术知识解决实际问题的能力。在课程设计过程中,学生需要对超市商品和销售员的关系进行有效管理,使系统功能更全面、实用,从而提高用户体验和便利性。 学生在课程设计过程中展现了积极的学习态度和纪律,没有缺勤情况,演示过程流畅且作品具有很强的使用价值。设计报告完整详细,展现了对问题的深入思考和解决能力。在答辩环节中,学生能够自信地回答问题,展示出扎实的专业知识和逻辑思维能力。教师对学生的表现予以肯定,认为学生在课程设计中表现出色,值得称赞。 整个课程设计过程包括平时成绩、报告成绩和演示与答辩成绩三个部分,其中平时表现占比20%,报告成绩占比40%,演示与答辩成绩占比40%。通过这三个部分的综合评定,最终为学生总成绩提供参考。总评分以百分制计算,全面评估学生在课程设计中的各项表现,最终为学生提供综合评价和反馈意见。 通过校园超市商品信息管理系统课程设计,学生不仅提升了对程序设计基础知识的理解与应用能力,同时也增强了团队协作和沟通能力。这一过程旨在培养学生综合运用技术解决问题的能力,为其未来的专业发展打下坚实基础。学生在进行校园超市商品信息管理系统课程设计过程中,不仅获得了理论知识的提升,同时也锻炼了实践能力和创新思维,为其未来的职业发展奠定了坚实基础。 校园超市商品信息管理系统课程设计的目的在于促进学生对程序设计基础知识的深入理解与掌握,同时培养学生解决实际问题的能力。通过对系统功能和用户需求的全面考量,学生设计了一个实用、高效的校园超市商品信息管理系统,为用户提供了更便捷、更高效的管理和使用体验。 综上所述,校园超市商品信息管理系统课程设计是一项旨在提升学生综合能力和实践技能的重要教学活动。通过此次设计,学生不仅深化了对程序设计基础知识的理解,还培养了解决实际问题的能力和团队合作精神。这一过程将为学生未来的专业发展提供坚实基础,使其在实际工作中能够胜任更多挑战。