一.初始化解复用器

  在音视频的解复用的过程中,有一个非常重要的结构体AVFormatContext,即输入文件的上下文句柄结构,代表当前打开的输入文件或流。我们可以将输入文件的路径以及AVFormatContext **format_ctx 传入函数avformat_open_input(),就可以打开对应的音视频文件或流。接下来再调用avformat_find_stream_info()函数去解析输入文件中的音视频流信息,打开对应的解码器,读取文件头的信息进行解码, 然后在解码过程中将一些参数的信息保存到AVStream结构对应的成员中。之后,我们便可以通过AVStream去初始化编解码器的上下文结构,下面给出代码:

static AVFormatContext *format_ctx= nullptr;
static AVCodecContext *video_dec_ctx= nullptr,*audio_dec_ctx= nullptr;
static int32_t video_stream_index=-1;
static int32_t audio_stream_index=-1;
static AVStream *video_stream= nullptr,*audio_stream= nullptr;
static FILE *output_video_file= nullptr,*output_audio_file= nullptr;
static AVPacket *pkt= nullptr;
static AVFrame *frame= nullptr; static int open_codec_context(int32_t *stream_idx,AVCodecContext **dec_ctx,AVFormatContext *fmt_ctx,enum AVMediaType type){
int ret,stream_index;
AVStream *st= nullptr;
const AVCodec *dec= nullptr;
ret= av_find_best_stream(fmt_ctx,type,-1,-1, nullptr,0);
if(ret<0){
cerr<<"Error:Could not find "<<string(av_get_media_type_string(type))<<" stream in input file."<<endl;
return ret;
}
else{
stream_index=ret;
st=fmt_ctx->streams[stream_index];
//find decoder for the stream
dec= avcodec_find_decoder(st->codecpar->codec_id);
if(!dec){
cerr<<"Error:Failed to find codec:"<<string(av_get_media_type_string(type))<<endl;
return -1;
}
*dec_ctx= avcodec_alloc_context3(dec);
if(!*dec_ctx){
cerr<<"Error:Failed to alloc codec context:"<<string(av_get_media_type_string(type))<<endl;
return -1;
}
if((ret= avcodec_parameters_to_context(*dec_ctx,st->codecpar))<0){
cerr<<"Error:Failed to copy codec parameters to decoder context."<<endl;
return ret;
}
if((ret=avcodec_open2(*dec_ctx,dec, nullptr))<0){
cerr<<"Error:Could not open "<<string(av_get_media_type_string(type))<<" codec."<<endl;
return ret;
}
*stream_idx=stream_index;
}
return 0;
}
int32_t init_demuxer(const char *input_name,const char *video_output_name,const char *audio_output_name){
if(strlen(input_name)==0){
cerr<<"Error:empty input file name."<<endl;
exit(-1);
}
int32_t result= avformat_open_input(&format_ctx,input_name, nullptr, nullptr);
if(result<0){
cerr<<"Error:avformat_open_input failed."<<endl;
exit(-1);
}
result= avformat_find_stream_info(format_ctx, nullptr);
if(result<0){
cerr<<"Error:avformat_find_stream_info failed."<<endl;
exit(-1);
}
result= open_codec_context(&video_stream_index,&video_dec_ctx,format_ctx,AVMEDIA_TYPE_VIDEO);
if(result>=0){
video_stream=format_ctx->streams[video_stream_index];
output_video_file=fopen(video_output_name,"wb");
if(!output_video_file){
cerr<<"Error:failed to open video output file."<<endl;
return -1;
}
}
result= open_codec_context(&audio_stream_index,&audio_dec_ctx,format_ctx,AVMEDIA_TYPE_AUDIO);
if(result>=0){
audio_stream=format_ctx->streams[audio_stream_index];
output_audio_file=fopen(audio_output_name,"wb");
if(!output_audio_file){
cerr<<"Error:failed to open audio output file."<<endl;
return -1;
}
}
av_dump_format(format_ctx,0,input_name,0);
if(!audio_stream&&!video_stream){
cerr<<"Error:Could not find audio or video stream in the input,aborting"<<endl;
return -1;
}
pkt=av_packet_alloc();
if(!pkt){
cerr<<"Error:could not alloc packet."<<endl;
return -1;
}
frame=av_frame_alloc();
if(!frame){
cerr<<"Error:could not alloc frame."<<endl;
return -1;
}
if(video_stream){
cout<<"Demuxing video from file "<<string(input_name)<<" into "<<string(video_output_name)<<endl;
}
if(audio_stream){
cout<<"Demuxing audio from file "<<string(input_name)<<" into "<<string(audio_output_name)<<endl;
}
return 0;
}

二.循环读取码流包数据进行解码

  在这里,我们需要调用一个非常重要的函数av_read_frame(),它可以从打开的音视频文件或流中依次读取下一个码流包结构,然后我们将码流包传入解码器进行解码即可,代码如下:

static int32_t decode_packet(AVCodecContext *dec,const AVPacket *pkt,bool flushing){
int32_t result=0;
result= avcodec_send_packet(dec,pkt);
if(result<0){
cerr<<"Error:avcodec_send_packet failed."<<endl;
return -1;
}
while(result>=0){
result=avcodec_receive_frame(dec,frame);
if(result<0){
if(result==AVERROR_EOF||result==AVERROR(EAGAIN)){
return 0;
}
cerr<<"Error:Error during decoding,result="<<result<<endl;
return result;
}
if(dec->codec->type==AVMEDIA_TYPE_VIDEO){
write_frame_to_yuv(frame);
}
else{
write_samples_to_pcm(frame,audio_dec_ctx);
}
if(flushing){
cout<<"flushing"<<endl;
}
av_frame_unref(frame);
}
return result;
}
int32_t demuxing(){
int32_t result=0;
while(av_read_frame(format_ctx,pkt)>=0){
cout<<"Read packet,pts:"<<pkt->pts<<",stream:"<<pkt->stream_index<<",size:"<<pkt->size<<endl;
if(pkt->stream_index==audio_stream_index){
result= decode_packet(audio_dec_ctx,pkt,false);
}
else if(pkt->stream_index==video_stream_index){
result= decode_packet(video_dec_ctx,pkt,false);
}
av_packet_unref(pkt);
if(result<0){
break;
}
}
if(video_dec_ctx){
decode_packet(video_dec_ctx, nullptr,true);
}
if(audio_dec_ctx){
decode_packet(audio_dec_ctx, nullptr,true);
}
cout<<"Demuxing succeeded."<<endl;
return 0;
}

三.将解码后的图像序列以及音频采样数据写入相应的文件

  这个步骤比较简单,不解释,直接上代码:

int32_t write_frame_to_yuv(AVFrame* frame){
uint8_t** pBuf=frame->data;
int* pStride=frame->linesize;
for(size_t i=0;i<3;i++){
int32_t width=(i==0?frame->width:frame->width/2);
int32_t height=(i==0?frame->height:frame->height/2);
for(size_t j=0;j<height;j++){
fwrite(pBuf[i],1,width,output_video_file);
pBuf[i]+= pStride[i];
}
}
return 0;
}
int32_t write_samples_to_pcm(AVFrame* frame,AVCodecContext* codec_ctx){
int data_size= av_get_bytes_per_sample(codec_ctx->sample_fmt);
if(data_size<0){
cerr<<"Error:failed to calculate data size."<<endl;
return -1;
}
for(int i=0;i<frame->nb_samples;i++){
for(int ch=0;ch<codec_ctx->channels;ch++){
fwrite(frame->data[ch]+i*data_size,1,data_size,output_audio_file);
}
}
return 0;
}

四.销毁资源,释放内存

void destroy_demuxer(){
avcodec_free_context(&video_dec_ctx);
avcodec_free_context(&audio_dec_ctx);
avformat_close_input(&format_ctx);
if(output_audio_file!= nullptr){
fclose(output_audio_file);
output_audio_file= nullptr;
}
if(output_video_file!= nullptr){
fclose(output_video_file);
output_video_file= nullptr;
}
}

五.main函数

int main(){
int32_t result=init_demuxer("../input.mp4","../output.yuv","../output.pcm");
if(result<0){
return -1;
}
result=demuxing();
if(result<0){
return -1;
}
destroy_demuxer();
return 0;
}

  到这里,就大功告成了,可以使用以下的命令去播放输出的音视频文件:

  ffplay -ac 2 -ar 44100 -f f32le -i output.pcm

  ffplay -f rawvideo -video_size 1920x1080 -i output.yuv

如何将mp4文件解复用并且解码为单独的.yuv图像序列以及.pcm音频采样数据?的更多相关文章

  1. 音视频编解码问题:javaCV如何快速进行音频预处理和解复用编解码(基于javaCV-FFMPEG)

    前言: 前面我用了很多章实现了javaCV的基本操作,包括:音视频捕捉(摄像头视频捕捉和话筒音频捕捉),推流(本地音视频或者摄像头话筒混合推流到服务器),转流(rtsp->rtmp),收流(录制 ...

  2. JavaCV的摄像头实战之六:保存为mp4文件(有声音)

    欢迎访问我的GitHub https://github.com/zq2599/blog_demos 内容:所有原创文章分类汇总及配套源码,涉及Java.Docker.Kubernetes.DevOPS ...

  3. FFmpeg(2)-avformat_open_input()函数详解并示例打开mp4文件

    一. 解封装 pts 是显示的时间 dts是解码的时间, 这个时间是用来做同步. av_register_all(), 注册所有的格式.包括解封装格式和加封装格式. avformat_network_ ...

  4. mux复用 demux解复用

    保存音频包: 直接输出解复用之后的的音频数据码流.只需要在每次调用av_read_frame()之后将得到的音频的AVPacket存为本地文件即可. 但在分离AAC码流的时候,直接存储AVPacket ...

  5. 解复用-mpeg2

    http://blog.csdn.net/yipie/article/details/7612226 数字高清晰度电视(High Definition Television)简称HDTV,是继黑白电视 ...

  6. 嵌入式 使用mp4v2将H264+AAC合成mp4文件

    录制程序要添加新功能:录制CMMB电视节目,我们的板卡发送出来的是RTP流(H264视频和AAC音频),录制程序要做的工作是: (1)接收并解析RTP包,分离出H264和AAC数据流: (2)将H26 ...

  7. 嵌入式 H264—MP4格式及在MP4文件中提取H264的SPS、PPS及码流

    一.MP4格式基本概念 MP4格式对应标准MPEG-4标准(ISO/IEC14496) 二.MP4封装格式核心概念 1  MP4封装格式对应标准为 ISO/IEC 14496-12(信息技术 视听对象 ...

  8. 使用mp4v2将H264+AAC合成mp4文件

    录制程序要添加新功能:录制CMMB电视节目,我们的板卡发送出来的是RTP流(H264视频和AAC音频),录制程序要做的工作是: (1)接收并解析RTP包,分离出H264和AAC数据流: (2)将H26 ...

  9. 【转】使用ffmpeg转码的MP4文件需要加载完了才能播放的解决办法

    1.前一段时间做了一个ffmpeg转码MP4的项目,但是转出来的MP4部署在网站上需要把整个视频加载完成才能播放,到处找资料,最后找到解决方案记录于此备忘. FFMpeg转码由此得到的mp4文件中, ...

  10. [转载]为什么有些MP4文件在Chrome浏览器上播放不了?

    http://blog.sina.com.cn/s/blog_6bb7ebcc0101c2ja.html Chrome浏览器支持HTML5,它支持原生播放部分的MP4格式(不用通过Flash等插件). ...

随机推荐

  1. w11修改ie保护模式方法

    IE安全设置下有4个区域 对应的设置在不同的注册表中.[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Set ...

  2. Golang 常用库之jwt-go

    本文地址 https://www.cnblogs.com/zichliang/p/17303759.html github地址:https://github.com/dgrijalva/jwt-go ...

  3. 从0到1手把手教你ASP.NET Core Web API项目配置接口文档Swagger(一)

    一.创建ASP.NET Core Web API项目(若项目已创建,则可跳过本节内容) 1.双击打开VS2022. 2.单击"创建新项目",如下图. 3.选择"ASP.N ...

  4. RFS[3]: No standby redo logfiles available for thread 1

    问题描述:备库恢复DG之后,mrp进程一直是wait_for_log,主库创建数据没有正常同步,只有在切换归档的时候备库才能同步主库数据 查看主库日志,主库RFS进程提示没有可用的standby re ...

  5. Redis(四)主从复制

    主从复制 简介 主机数据更新之后根据配置和策略,自动同步数据到备机的Master/Slaver机制,Master以写为主,Slaver以读为主. 这样的机制能够实现: 读写分离:Master以写为主, ...

  6. c语言趣味编程(3)打鱼还是筛网

    一.问题描述 中国有句俗语叫"三天打鱼两天晒网".某人从1990年1月1日起开始"三天打鱼两天晒网",问这个人在以后的以后的某一天中是打鱼还是晒网. 二.设计思 ...

  7. 华为云 OpenTiny 跨端、跨框架企业级开源组件库项目落地实践直播即将开启!

    大家好,我是 Kagol,公众号:前端开源星球. "你们这个产品怎么只能在电脑上适配呀?我想在手机上看都不行,太麻烦了!!" "你们这个产品看起来太简单了,我想要@@功能 ...

  8. docker的安装(linux、centos)

    环境:centos7 1.先确定linux是否是centos7 cat /etc/redhat-release 2.如果自己的linux上之前有安装docker,先卸载.如果没有,则直接跳过这一步. ...

  9. javasec(八)jndi注入

    JNDI JNDI(全称Java Naming and Directory Interface)是用于目录服务的Java API,它允许Java客户端通过名称发现和查找数据和资源(以Java对象的形式 ...

  10. 2021牛客OI赛前集训营-提高组(第三场) 第二题 交替 题解与结论证明

    题目描述 一个长度为 \(n\) 的数组\(A\),每秒都会变成一个长度为 \(n − 1\) 新数组 \(A'\),其变化规 则如下: 若当前数组 \(A\) 的长度 \(n\) 为偶数,则对于新数 ...