功能: ffmpeg.exe实现视频的转码。
命令格式 ffmpeg -i [输入文件的路径] -b:v [输出文件的码率] [输入文件的路径]
简单命令
ffmpeg -i input.avi -b:v 640k output.ts 命令的作用:将当前文件夹下的input.avi文件转换为output.ts文件,并将output.ts文件视频的码率设置为640kbps。
常见的ffmpeg参数 ffmpeg相关文档
单击完成以后,并不能直接编写程序,由于我们是基于ffmpeg库的开发,所以还必当前Win32程序进行一个配置。
③:里面写的就是ffmpeg库的.dll程序名称。 avcodec.lib;avformat.lib; avutil.lib; avdevice.lib; avfilter.lib;postproc.lib; swresample.lib; swscale.lib 创建完成后,赶紧来测试一下,看环境是否配置成功。
avcodec.lib;avformat.lib; avutil.lib; avdevice.lib; avfilter.lib;postproc.lib; swresample.lib; swscale.lib
#include "stdafx.h"#define __STDC_CONSTANT_MACROSextern "C" {#include "libavcodec/avcodec.h "}int _tmain(int argc, _TCHAR* argv[]){printf("%s", avcodec_configuration());return 0;}
现在程序是一闪而过,我们可以通过打断点的方式,或者在return前加system("pause),来查看是否出现内容。这里我们使用打断点的方式。 当出现上面的内容时,则表示环境配置成功。
system("pause)