FFmpeg API : av_dump_format, 打印关于输入或输出格式的详细信息, 代码声明如下
/**
* Print detailed information about the input or output format, such as
* duration, bitrate, streams, container, programs, metadata, side data,
* codec and time base.
*
* @param ic the context to analyze
* @param index index of the stream to dump information about
* @param url the URL to print, such as source or destination file
* @param is_output Select whether the specified context is an input(0) or output(1)
*/
void av_dump_format(AVFormatContext *ic,
int index,
const char *url,
int is_output);
函数功能:
打印关于输入或输出格式的详细信息,例如持续时间,比特率,流,容器,程序,元数据,边数据,编解码器和时基。
参数说明:
最后一个参数 is_output 选择指定的上下文是输入(0)还是输出(1),也就说最后一个参数填0,打印输入流;最后一个参数填1,打印输出流
代码示例
#include <iostream>
extern "C"
{
#include "libavformat/avformat.h"
}
using namespace std;
#pragma comment(lib,"avformat.lib")
#pragma comment(lib,"avutil.lib")
int ff_Error(int errNum)
{
char buf[1024] = { 0 };
av_strerror(errNum, buf, sizeof(buf));
cout << buf << endl;
system("pause");
return -1;
}
int main()
{
char *inUrl = "D:\\TestFiles\\test.flv";
av_register_all();
AVFormatContext *ictx = NULL;
//打开文件,解封文件头
int re = avformat_open_input(&ictx, inUrl, 0, 0);
if (re != 0)
{
return ff_Error(re);
}
cout << "open file " << inUrl << " success..." << endl;
//获取音频视频流信息 ,h264 flv
re = avformat_find_stream_info(ictx, 0);
if (re != 0)
{
return ff_Error(re);
}
//打印流信息
//注意:最后一个参数填0,打印输入流;最后一个参数填1,打印输出流
av_dump_format(ictx, 0, inUrl, 0);
system("pause");
return 0;
}
运行结果:
可以看到test.flv一共有两个流,
#0:0视频流,h264编码,yuv420, 1920*1080, 30fps,
#0:1音频流 aac编码,48000Hz, stereo立体声
令狐掌门 发布了124 篇原创文章 · 获赞 84 · 访问量 16万+ 私信 关注