ffmpeg是做什么的,在哪里下载?怎么使用?
一、ffmpeg介绍
ffmpeg的官方网址如下:
FFmpeg is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge. No matter if they were designed by some standards committee, the community or a corporation. It is also highly portable: FFmpeg compiles, runs, and passes our testing infrastructure FATE across Linux, Mac OS X, Microsoft Windows, the BSDs, Solaris, etc. under a wide variety of build environments, machine architectures, and configurations.
应该就是一个处理多媒体信息的框架。
二、ffmpeg如何下载
https://ffmpeg.org/download.html
https://www.gyan.dev/ffmpeg/builds/ffmpeg-release-essentials.zip
这个在国内的下载速度很慢。
由于下载很慢,所以下载完成之后我将这个压缩文件放到了云盘上
如下:
链接:https://pan.baidu.com/s/19wskgjUCk6lrCNp3AJUB9g
提取码:quqw
复制这段内容后打开百度网盘手机App,操作更方便哦
有需要的同学可以下载。
三、ffmpeg如何安装配置
下载完成之后将这个压缩文件解压,
解压之后打开可以看到有一个文件夹叫做bin,打开bin文件夹可以看到三个exe文件,
我们将ffmpeg.exe文件所在的文件夹路径添加到环境变量path中,具体如何添加环境变量看一下我这个帖子https://www.cda.cn/discuss/post/details/6049758b75777523b5dff661
添加到系统变量path里面。
添加完成之后我们就可以打开cmd窗口直接调用了,我们试一下
ffmpeg –version
这样ffmpeg就算安装配置好了。
四、ffmpeg如何用来将mp4文件转化为wav文件
如果你手头没有mp4文件,可以用我这个文件,我简单录制了hello hello!两个单词
链接:https://pan.baidu.com/s/15rtkDpZm5_CTCfPnG1iDDQ
提取码:rfgu
复制这段内容后打开百度网盘手机App,操作更方便哦
然后我们就可以在cmd窗口输入下面的命令将mp4文件转化为wav文件了
ffmpeg -i C:\Users\Administrator\Desktop\hellohello.mp4 C:\Users\Administrator\Desktop\hellohello.wav
这样我们的wav文件就转化好了,是不是很方便呢?
暂无数据