FFmpeg 是视频处理最常用的开源软件。 它功能强大,用途广泛,大量用于视频网站和商业软件(比如 Youtube 和 iTunes),也是许多音频和视频格式的标准编码/解码实现。 FFmpeg 本身是一个庞大的项目,包含许多组件和库文件,最常用的是它的命令行工具。本文介绍 FFmpeg 命令行如何处理视频,比桌面视频处理软件更简洁高效。 ffmpeg官方网站:http://www.ffmpeg.org/ 1.在Linux 执行下载、解压命令: wget http://www.ffmpeg.org/releases/ffmpeg-5.1.3.tar.gz tar -zxvf ffmpeg-5.1.3.tar.gz 2.进入解压后目录,输入如下命令/usr/local/ffmpeg为自己指定的安装目录 cd ffmpeg-5.1.3 ./configure --prefix=/usr/local/ffmpeg 可能会遇到以下报错: nasm/yasm not found or too old. Use --disable-x86asm for a crippled build. If you think configure made a mistake, make sure you are using the latest version from Git. If the latest version fails, report the problem to the ffmpeg-user@ffmpeg.org mailing list or IRC #ffmpeg on irc.freenode.net. Include the log file "ffbuild/config.log" produced by configure as this will help solve the problem. 这是由于 asm版本是旧的或者没有asm,因此需要安装或者更新,执行如下命令: sudo apt install nasm yasm 3. 安装 make && make install 至此FFmpeg安装完毕 ffmpeg -version //查看版本 |
|小黑屋| 飞凌嵌入式 ( 冀ICP备12004394号-1 )
GMT+8, 2024-11-22 18:48
Powered by Discuz! X3.4
© 2001-2013 Comsenz Inc.