Java教程

第一个FFMPEG程序

本文主要是介绍第一个FFMPEG程序,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1.将相关的库及头文件添加

2.在代码中加头文件

extern "C"
{
#include <libavcodec/avcodec.h>
#include <libavformat/avformat.h>
};

注意加extern "C"

3.代码

AVFormatContext *pFormatCtx = avformat_alloc_context();

if (avformat_open_input(&pFormatCtx, "1.mp4", NULL, NULL)) {
fprintf(stderr, "open input failed\n");
return ;
}

if (avformat_find_stream_info(pFormatCtx, NULL) < 0) {
fprintf(stderr, "find stream info failed\n");
return ;
}

int videoStream = av_find_best_stream(pFormatCtx, AVMEDIA_TYPE_VIDEO, -1, -1, NULL, 0);

printf("nb:%d, url:%s, time:%ld, duration:%ld, bitRate:%ld, videoStream:%d\n",
pFormatCtx->nb_streams, pFormatCtx->url, pFormatCtx->start_time, pFormatCtx->duration,
pFormatCtx->bit_rate, videoStream);

4.其他的错误可以直接将错误在百度中搜。

这篇关于第一个FFMPEG程序的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!