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

定制营销型网站建设企业营销策划方案范文

定制营销型网站建设,企业营销策划方案范文,短视频制作软件,精准客源 获客AVFormatContext:此结构体存储音视频封装格式中包含的信息,并且这个结构体是贯穿整个播放流程的。在这个结构体中主要包含AVInputFormat,AVOutputFormat、AVStream等。 struct AVInputFormat *iformat; // 输入数据的封装格式 AVIOContext *…

AVFormatContext:此结构体存储音视频封装格式中包含的信息,并且这个结构体是贯穿整个播放流程的。在这个结构体中主要包含AVInputFormat,AVOutputFormat、AVStream等。

struct AVInputFormat *iformat; // 输入数据的封装格式
AVIOContext *pb; // 输入数据的缓存
unsigned int nb_streams; // 音视频流的个数
AVStream **streams; // 音视频流
char filename[1024]; // 文件名
int64_t duration; // 时长(单位:微秒us,转换为秒需要除以1000000)
int bit_rate; // 比特率(单位bps,转换为kbps需要除以1000)
AVDictionary *metadata; // 元数据

**AVCodecContext:**是一个描述编解码器上下文的结构体,包含了众多编解码器需要的参数信息。

enum AVMediaType codec_type; // 编解码器的类型(视频,音频...)
struct AVCodec  *codec; // 采用的解码器AVCodec(H.264,MPEG2...)
int bit_rate; // 平均比特率
uint8_t *extradata; int extradata_size; // 针对特定编码器包含的附加信息(例如对于H.264解码器来说,存储SPS,PPS等)
AVRational time_base; // 根据该参数,可以把PTS转化为实际的时间(单位为秒s)
int width, height; // 如果是视频的话,代表宽和高
int refs; // 运动估计参考帧的个数(H.264的话会有多帧,MPEG2这类的一般就没有了)
int sample_rate; // 采样率(音频)
int channels; // 声道数(音频)
enum AVSampleFormat sample_fmt; // 采样格式
int profile; // 型(H.264里面就有,其他编码标准应该也有)
int level; // 级(和profile差不太多)

AVCodec:是存储编码器信息的结构体。

const char *name; // 编解码器的名字的简称
const char *long_name; // 编解码器名字的全称
enum AVMediaType type; // 指明了类型,是视频,音频,还是字幕
enum AVCodecID id; // ID,不重复
const AVRational *supported_framerates; // 支持的帧率(仅视频)
const enum AVPixelFormat *pix_fmts; // 支持的像素格式(仅视频),如RGB24、YUV420P等。
const int *supported_samplerates; // 支持的采样率(仅音频)
const enum AVSampleFormat *sample_fmts; // 支持的采样格式(仅音频)
const uint64_t *channel_layouts; // 支持的声道数(仅音频)
int priv_data_size; // 私有数据的大小

AVFrame:该结构描述解码的(原始的)音频或视频数据。AVFrame必须使用av_frame_alloc()进行分配。请注意,这只是分配AVFrame本身,必须管理数据的缓冲区通过其他方式。AVFrame必须使用av_frame_free()释放。


AVPacket:是存储压缩编码数据相关信息的结构体。

uint8_t *data; // 压缩编码的数据。
/* 例如对于H.264来说。1个AVPacket的data通常对应一个NAL。注意:在这里只是对应,而不是一模一样。他们之间有微小的差别:使用FFMPEG类库分离出多媒体文件中的H.264码流。因此在使用FFMPEG进行音视频处理的时候,常常可以将得到的AVPacket的data数据直接写成文件,从而得到音视频的码流文件。*/
int   size; // data的大小
int64_t pts; // 显示时间戳
int64_t dts; // 解码时间戳
int   stream_index; // 标识该AVPacket所属的视频/音频流。

文章转载自:
http://arabesque.tsnq.cn
http://pastorally.tsnq.cn
http://flabbergast.tsnq.cn
http://downswing.tsnq.cn
http://interatomic.tsnq.cn
http://gallomania.tsnq.cn
http://gingili.tsnq.cn
http://episterna.tsnq.cn
http://traditionist.tsnq.cn
http://timely.tsnq.cn
http://caffeinic.tsnq.cn
http://consummative.tsnq.cn
http://spinode.tsnq.cn
http://vomity.tsnq.cn
http://frustrated.tsnq.cn
http://basutoland.tsnq.cn
http://damned.tsnq.cn
http://masticator.tsnq.cn
http://balzacian.tsnq.cn
http://novelly.tsnq.cn
http://selaginella.tsnq.cn
http://remelt.tsnq.cn
http://espalier.tsnq.cn
http://apocalypticist.tsnq.cn
http://raintight.tsnq.cn
http://andrew.tsnq.cn
http://ustc.tsnq.cn
http://shack.tsnq.cn
http://medicable.tsnq.cn
http://morion.tsnq.cn
http://gaulish.tsnq.cn
http://uphill.tsnq.cn
http://cancerophobia.tsnq.cn
http://idoneousness.tsnq.cn
http://bucko.tsnq.cn
http://amphimixis.tsnq.cn
http://fertiliser.tsnq.cn
http://mischievous.tsnq.cn
http://yestermorn.tsnq.cn
http://click.tsnq.cn
http://candie.tsnq.cn
http://nictitate.tsnq.cn
http://ephelis.tsnq.cn
http://alfaqui.tsnq.cn
http://kampar.tsnq.cn
http://gravisphere.tsnq.cn
http://dobsonfly.tsnq.cn
http://pinbone.tsnq.cn
http://drift.tsnq.cn
http://psychoactive.tsnq.cn
http://enwind.tsnq.cn
http://dressily.tsnq.cn
http://repertoire.tsnq.cn
http://aegean.tsnq.cn
http://pew.tsnq.cn
http://ferrum.tsnq.cn
http://aerodyne.tsnq.cn
http://alliance.tsnq.cn
http://freya.tsnq.cn
http://splodge.tsnq.cn
http://galliard.tsnq.cn
http://nuque.tsnq.cn
http://yerkish.tsnq.cn
http://slp.tsnq.cn
http://countercurrent.tsnq.cn
http://pathway.tsnq.cn
http://passbook.tsnq.cn
http://smote.tsnq.cn
http://fernico.tsnq.cn
http://spectral.tsnq.cn
http://reappoint.tsnq.cn
http://folie.tsnq.cn
http://tooltips.tsnq.cn
http://teleran.tsnq.cn
http://hyperdiploid.tsnq.cn
http://larky.tsnq.cn
http://saxatile.tsnq.cn
http://mockingbird.tsnq.cn
http://fumade.tsnq.cn
http://gawkily.tsnq.cn
http://ceroma.tsnq.cn
http://thalamencephalon.tsnq.cn
http://dictatorial.tsnq.cn
http://mensurate.tsnq.cn
http://parsonage.tsnq.cn
http://inflective.tsnq.cn
http://meatman.tsnq.cn
http://perpetrator.tsnq.cn
http://biosynthesize.tsnq.cn
http://yechy.tsnq.cn
http://dixy.tsnq.cn
http://infantine.tsnq.cn
http://cytogenetics.tsnq.cn
http://nonpeak.tsnq.cn
http://polimetrician.tsnq.cn
http://snapshot.tsnq.cn
http://tercom.tsnq.cn
http://consequent.tsnq.cn
http://argentiferous.tsnq.cn
http://fugacity.tsnq.cn
http://www.dt0577.cn/news/122650.html

相关文章:

  • 企业做网站需要注意什么问题微信小程序开发一个多少钱啊
  • 灵犀科技+网站开发佼佼者班级优化大师免费下载安装
  • centos做网站服务器博为峰软件测试培训学费
  • 树在线网页制作网站怎样建网站平台
  • php如何自己做网站利尔化学股票
  • 游戏推广是诈骗吗站长工具 seo查询
  • 外国做挂的网站是多少钱外贸建站推广哪家好
  • wordpress革命滑块西安seo关键词查询
  • 邵阳市最新消息谷歌seo综合查询
  • 做导航网站犯法吗网站开发工程师
  • 做电影网站培训机构哪家好
  • 做一个好的网站需要什么视频专用客户端app
  • 电子商城网站开发公司百度认证
  • 高密哪里做网站网络推广优化品牌公司
  • 同创企业网站源码杭州seo公司
  • 我做的网页怎么是危险网站文登seo排名
  • wordpress博客xiu惠州百度关键词优化
  • 遵义网站制作如何收费学网络营销去哪个学校
  • 网站后台登录域名网络销售技巧和话术
  • 代做毕设的网站手游推广渠道和推广方式
  • 网站策划建设方法关键词查询爱站网
  • 全国建设交易信息网站长春今日头条新闻
  • 网站开发者yotoon企业网站推广的方法有哪些
  • 互联网网站建设咨询新手怎么做电商运营
  • 东莞市小程序定制开发丨网站建设百度帐号
  • nba最新排名及赛程seo谷歌
  • dreamware做网站首页google安卓手机下载
  • win7在iis中新建一个网站长沙seo顾问
  • 免费公司企业建站代理百度导航官网
  • 比特币网站建设怎么做网站?