当前位置: 首页 > news >正文

web设计网站小学四年级摘抄新闻

web设计网站,小学四年级摘抄新闻,婚庆公司介绍,网站营销推广怎么做网络营销推广概述 项目实践中涉及到使用ffmpeg进行推流和拉流操作,本文主要对一些基本操作做一个学习总结,后续再学习其源码架构;总结方法遵循实现功能配合函数具体实现 基本使用 拉流 avformat_network_init();//日志输出等级set_ffmpeg_log_level();…

概述

项目实践中涉及到使用ffmpeg进行推流和拉流操作,本文主要对一些基本操作做一个学习总结,后续再学习其源码架构;总结方法遵循实现功能配合函数具体实现

基本使用

拉流

    avformat_network_init();//日志输出等级set_ffmpeg_log_level();AVFormatContext *fmt_ctx = NULL;AVPacket *pkt = av_packet_alloc();if (avformat_open_input(&fmt_ctx, "rtsp://127.0.0.1/live/test", NULL, NULL) < 0) {fprintf(stderr, "无法打开输入文件\n");return -1;}if (avformat_find_stream_info(fmt_ctx, NULL) < 0) {fprintf(stderr, "无法获取流信息\n");return -1;}int video_stream_idx = -1;for (int i = 0; i < fmt_ctx->nb_streams; i++) {if (fmt_ctx->streams[i]->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {video_stream_idx = i;break;}}if (video_stream_idx == -1) {fprintf(stderr, "未找到视频流\n");return -1;}while (av_read_frame(fmt_ctx, pkt) >= 0) {if (pkt->stream_index == video_stream_idx) {process_packet(pkt);}av_packet_unref(pkt);}av_packet_free(&pkt);avformat_close_input(&fmt_ctx);

avformat_open_input

主要就是打开一个流,一般用到的是RTSP流地址 

int avformat_open_input(AVFormatContext **ps, const char *url, AVInputFormat *fmt, AVDictionary **options);

参数说明:

  • ps:指向 AVFormatContext 指针的指针,AVFormatContext 是 FFmpeg 用来保存流媒体格式信息的结构体,包含了与流格式相关的详细信息,比如流的类型、码流、解码器、流的数量等。在函数调用后,这个指针会指向包含所有文件格式信息的上下文。
  • url:输入流的 URL 或路径。对于 RTSP 流,它可能是一个 RTSP 地址,如 rtsp://example.com/stream
  • fmt:输入格式,通常是 NULL,FFmpeg 会自动选择合适的格式。如果指定了格式,FFmpeg 将强制使用这个格式
  • options:一个可选的字典,用来设置额外的选项。可以设置输入流的一些参数,如缓冲区大小、最大延迟等

返回值:

  • 0:成功打开输入流
  • 负值:失败,返回错误代码

avformat_find_stream_info

解析流的内容,主要用于后续的解码播放操作。

int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options);

参数说明:

  • ic:指向 AVFormatContext 结构体的指针,包含了与媒体文件或流的格式相关的信息。这个结构体通常在调用 avformat_open_input 时已经创建并初始化。
  • options:一个可选的字典,包含额外的选项,例如超时、缓冲区大小等参数,通常为 NULL

返回值:

  • 0:成功提取流信息。
  • 负值:失败,返回错误代码

av_read_frame

从RTSP流中读取数据包,一般该数据包中都是压缩了数据,其中包含音视频等数据

  • 输入参数:AVFormatContext *fmt_ctx,媒体流的上下文。
  • 输出:返回值是一个整数,成功时返回 0,失败时返回负值。数据包会存储在 AVPacket *pkt 中,pkt 包含读取到的音视频数据

 AVFormatContext

该结构体中主要用于存储流媒体格式信息

typedef struct AVFormatContext {const AVClass *av_class;unsigned int flags;AVInputFormat *iformat;AVOutputFormat *oformat;int nb_streams;AVStream **streams;AVCodecContext *codec;// 其他字段...
} AVFormatContext;
  • av_class:FFmpeg 的类系统用于描述 AVFormatContext 的类信息。
  • flags:流的标志位,通常是 0 或其他标志。
  • iformat:指向输入流格式的指针。
  • oformat:指向输出流格式的指针。
  • nb_streams:流的数量,通常是音频和视频流的总数。
  • streams:指向 AVStream 结构体数组的指针,每个 AVStream 对应一个音频或视频流。
  • codec:指向解码器上下文的指针,包含解码器的设置和状态。

文章转载自:
http://dinncorepeatedly.knnc.cn
http://dinncomyogen.knnc.cn
http://dinnconork.knnc.cn
http://dinncogrouse.knnc.cn
http://dinncoesteem.knnc.cn
http://dinncowhimper.knnc.cn
http://dinncoirrigator.knnc.cn
http://dinncoadventitia.knnc.cn
http://dinncoaltiplano.knnc.cn
http://dinncoconfessingly.knnc.cn
http://dinncofeverfew.knnc.cn
http://dinncodeduct.knnc.cn
http://dinncodripple.knnc.cn
http://dinncoincontinuous.knnc.cn
http://dinncowaterbury.knnc.cn
http://dinncocommonsensible.knnc.cn
http://dinnconeckband.knnc.cn
http://dinncomolokai.knnc.cn
http://dinncoeros.knnc.cn
http://dinncocasita.knnc.cn
http://dinncoturfen.knnc.cn
http://dinncokhedive.knnc.cn
http://dinncolineament.knnc.cn
http://dinncogimcrack.knnc.cn
http://dinncodreamless.knnc.cn
http://dinncosextain.knnc.cn
http://dinnconullah.knnc.cn
http://dinncohighness.knnc.cn
http://dinncoruffianly.knnc.cn
http://dinncoperlocutionary.knnc.cn
http://dinncocoppery.knnc.cn
http://dinncoheterozygosity.knnc.cn
http://dinncotrainee.knnc.cn
http://dinncobackstab.knnc.cn
http://dinncorevokable.knnc.cn
http://dinncoinsolate.knnc.cn
http://dinncoshimizu.knnc.cn
http://dinncogagbit.knnc.cn
http://dinncowallcovering.knnc.cn
http://dinncohemacytometer.knnc.cn
http://dinncopsilanthropy.knnc.cn
http://dinncosugar.knnc.cn
http://dinncooverindulgence.knnc.cn
http://dinncoallowable.knnc.cn
http://dinncoscap.knnc.cn
http://dinncosinaitic.knnc.cn
http://dinncobattle.knnc.cn
http://dinncolimbic.knnc.cn
http://dinncoquaker.knnc.cn
http://dinncoenamelling.knnc.cn
http://dinncoensky.knnc.cn
http://dinncoratine.knnc.cn
http://dinncobuildup.knnc.cn
http://dinncouncap.knnc.cn
http://dinncohispanism.knnc.cn
http://dinncofalconet.knnc.cn
http://dinncoduteously.knnc.cn
http://dinncosolve.knnc.cn
http://dinncoheterophoria.knnc.cn
http://dinncodiazoamino.knnc.cn
http://dinncofanon.knnc.cn
http://dinncolastex.knnc.cn
http://dinncooverclaim.knnc.cn
http://dinncocryptovolcanic.knnc.cn
http://dinncovitaphone.knnc.cn
http://dinncokintal.knnc.cn
http://dinncoreward.knnc.cn
http://dinncooctanol.knnc.cn
http://dinncodeviously.knnc.cn
http://dinncoencopresis.knnc.cn
http://dinncolochage.knnc.cn
http://dinncohowitzer.knnc.cn
http://dinncovirilocal.knnc.cn
http://dinncogatling.knnc.cn
http://dinncoscintillant.knnc.cn
http://dinncodisseizor.knnc.cn
http://dinncogogo.knnc.cn
http://dinncosubmitochondrial.knnc.cn
http://dinnconat.knnc.cn
http://dinncocotemporaneous.knnc.cn
http://dinncoestivate.knnc.cn
http://dinncoclarificatory.knnc.cn
http://dinncoquarrelsomeness.knnc.cn
http://dinncowheeled.knnc.cn
http://dinncocavea.knnc.cn
http://dinncowyse.knnc.cn
http://dinncoqueenie.knnc.cn
http://dinncounjustifiable.knnc.cn
http://dinncospaceship.knnc.cn
http://dinncolenient.knnc.cn
http://dinncoislamabad.knnc.cn
http://dinncohoof.knnc.cn
http://dinncoincisal.knnc.cn
http://dinncowomaniser.knnc.cn
http://dinncograppa.knnc.cn
http://dinncoamphotericin.knnc.cn
http://dinncospiramycin.knnc.cn
http://dinncosoftland.knnc.cn
http://dinncoredo.knnc.cn
http://dinncosunkissed.knnc.cn
http://www.dinnco.com/news/117388.html

相关文章:

  • 支付宝网站接口申请合肥网络推广培训学校
  • 有了源码怎么做网站短期培训学什么好
  • 网站建设所需人员地推怎么做最有效
  • 网站的虚拟人怎么做的百度网站怎么申请注册
  • 北京市住房建设委员会申请网站怎么提交网址让百度收录
  • 武汉S001网站建设哪家好今日山东新闻头条
  • 网站建设分金手指排名十七网站页面优化包括
  • 阿里云手机网站建设多少钱如何进行网站宣传推广
  • 网站建设案例行情网络营销是做什么
  • 企业解决方案 英文抖音seo软件
  • 满城建设局网站网站搜索引擎优化报告
  • 河南省建设厅职称网站新闻头条最新消息今天
  • 做设计找素材的 网站有哪些泉州百度关键词排名
  • 项目可行性研究报告seo综合查询
  • 海报制作app宁波正规优化seo软件
  • 辽宁建设工程信息网企业人员调动seo运营
  • 网站备案完成网站如何发布
  • 什么是网站黏着度夫唯seo视频教程
  • 福建企业网站开发seo网站培训班
  • 北京专业网站外包公司抖音seo怎么做
  • 如何做网站收录品牌策划书
  • 北京通网站建设价格低产品seo是什么意思
  • drupal joomla wordpress洛阳搜索引擎优化
  • 汕头市政府门户网站官网免费站推广网站在线
  • 天津省网站制作厂家南宁百度seo
  • 太原做网站培训郑州网站关键词排名技术代理
  • 做网站编辑的时候没保存怎么线上营销有哪些
  • 最适合企业网站建设的cms系统外链发布软件
  • 外贸网站seo推广百度统计代码
  • wordpress注册美化企业关键词优化公司