http://wiki.ubuntu.org.cn/UbuntuSkills
Ubuntu安装FFmpeg编码出MP4文件的方法
FFmpeg是Ubuntu下强大的视频、音频编解码工具。 x264可以编码出高质量的h.264视频,iPad必须要h.264编码或mpeg-4编码的视频才能正常播放。Ubuntu官方源默认是不提供h.264编码的,这就需要我们手工编译安装FFmpeg的h.264支持,使之能够编码出MP4文件。
FFmpeg是Ubuntu下强大的视频、音频编解码工具。 x264可以编码出高质量的h.264视频,iPad必须要h.264编码或mpeg-4编码的视频才能正常播放。
由于版权方面尚未确定,虽然全国很多网站都在使用h.264编码,但将来很有可能会被版权问题所困扰,所以Ubuntu官方源默认是不提供h.264编码的,这就需要我们手工编译安装FFmpeg的h.264支持,使之能够编码出MP4文件。
Ubuntu下安装、使用和升级FFmpeg的方法如下
1、安装支持包
- #libMP3lame
- sudo apt-get remove libMP3lame-dev
- sudo apt-get install nasm
- wget
- tar xzvf lame-3.98.4.tar.gz
- cd lame-3.98.4
- ./configure --enable-nasm --disable-shared
- make
- sudo checkinstall --pkgname=lame-ffmpeg --pkgversion="3.98.4" --backup=no --default --deldoc=yes
#卸载现有的 x264、libx264-dev、FFmpeg
- sudo apt-get remove ffmpeg x264 libx264-dev
#安装所有的 FFmpeg 和 x264 支持包
- sudo apt-get update
- sudo apt-get install build-essential subversion git-core checkinstall yasm texi2html libfaac-dev libMP3lame-dev libopencore-amrnb-dev libopencore-amrwb-dev libsdl1.2-dev libtheora-dev libvorbis-dev libvpx-dev libx11-dev libxfixes-dev libxvidcore-dev zlib1g-dev
2、安装x264
- cd
- git clone git://git.videolan.org/x264.git
- cd x264
- #./configure
- ./configure --enable-static --enabled-shared
- make
- sudo checkinstall --pkgname=x264 --pkgversion "2:0.`grep X264_BUILD x264.h -m1 | cut -d' ' -f3`.`git rev-list HEAD | wc -l`+git`git rev-list HEAD -n 1 | head -c 7`" --backup=no --deldoc=yes --fstrans=no --default
3、安装FFmpeg
- cd
- svn checkout svn://svn.ffmpeg.org/ffmpeg/trunk ffmpeg
- cd ffmpeg
- ./configure --enable-gpl --enable-version3 --enable-nonfree --enable-postproc --enable-libfaac --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libxvid
- #--enable-x11grab
- gcc使用正确的版本http://forums.debian.net/viewtopic.php?f=10&t=103908
- http://www.linuxquestions.org/questions/linux-software-2/managed-environment-ffmpeg-install-4175461262/
- make
- sudo checkinstall --pkgname=ffmpeg --pkgversion "4:SVN-r`LANG=C svn info | grep Revision | awk '{ print $NF }'`" --backup=no --deldoc=yes --fstrans=no --default
- hash x264 ffmpeg ffplay
4、安装qt-faststart(可选)
这是个重要的x264再编码工具, 它的作用是使得视频不必等待下载完成即可开始播放。
使用方法:
- qt-faststart input.foo output.foo
安装方法:
- cd ~/ffmpeg
- make tools/qt-faststart
- sudo checkinstall --pkgname=qt-faststart --pkgversion "4:SVN-r`LANG=C svn info | grep Revision | awk '{ print $NF }'`" --backup=no --deldoc=yes --fstrans=no --default install -D -m755 tools/qt-faststart /usr/local/bin/qt-faststart
5、基本安装完成,你可以保留 ~/x264、~/ffmpeg目录以便将来升级时使用。
6、升级 FFmpeg 和 x264
- sudo apt-get remove ffmpeg x264 libx264-dev libvpx
- cd ~/x264
- make distclean
- git pull
- cd ~/ffmpeg
- make distclean
- svn update
- ./configure --enable-gpl --enable-version3 --enable-nonfree --enable-postproc --enable-libfaac --enable-libMP3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libxvid --enable-x11grab
- make
- sudo checkinstall --pkgname=ffmpeg --pkgversion "4:SVN-r`LANG=C svn info | grep Revision | awk '{ print $NF }'`" --backup=no --deldoc=yes --fstrans=no --default
- hash x264 ffmpeg ffplay
7、使用 FFmpeg and x264
容易的输出高质量视频的方法是使用FFmpeg中libx264的预设模式。你可以手工调整一些选项 (例如窗口大小: -s 640×480) 。 另外你可以参考 libx264 预设模式在线列表或再 /usr/local/share/ffmpeg 目录中查找帮助。
One-pass CRF (Constant Rate Factor) 使用预设模式:slow. One-pass CRF是经常使用的常规编码方式. 调整 -crf 可以改变输出质量. 数字越小输出质量越高同时输出尺寸越大. 可使用的数字范围是:18 ~ 28。
- ffmpeg -i input.avi -acodec libfaac -ab 128k -ac 2 -vcodec libx264 -vpre slow -crf 22 -threads 0 output.MP4
Two-Pass encode 使用预设模式: fast. 想要精确设置目标编码率、文件大小的时候会使用到这个编码模式。
- ffmpeg -i input.avi -pass 1 -vcodec libx264 -vpre fast_firstpass -b 512k -bt 512k -threads 0 -f rawvideo -an -y /dev/null && ffmpeg -i input.avi -pass 2 -acodec libfaac -ab 128k -ac 2 -vcodec libx264 -vpre fast -b 512k -bt 512k -threads 0 output.MP4
iPod/iPad 640×480,使用预设值: slow 和 ipod640:
- ffmpeg -i input.avi -acodec libfaac -aq 100 -ac 2 -vcodec libx264 -vpre slow -vpre ipod640 -crf 26 -map_meta_data 0:0 -vf scale=640:-1 -threads 0 output.MP4
总结:
欲知更多有关Ubuntu安装FFmpeg编码出MP4文件的方法,请点击Ubuntu如何转换mp4与x264和h.264。
https://trac.ffmpeg.org/wiki/UbuntuCompilationGuide
Compile FFmpeg on Ubuntu, Debian, or Mint
Contents
This guide for supported releases of Ubuntu, Debian, and Linux Mint will provide a local install of the latest FFmpeg tools and libraries including several external encoding and decoding libraries (codecs). This will not provide a system installation and therefore will not interfere with anything such as repository packages. Recent static builds are also available for lazy people or those who are unable to compile.
Get the Dependencies
Copy and paste the whole code box for each step.
sudo apt-get update sudo apt-get -y install autoconf automake build-essential git libass-dev libgpac-dev \ libsdl1.2-dev libtheora-dev libtool libva-dev libvdpau-dev libvorbis-dev libx11-dev \ libxext-dev libxfixes-dev pkg-config texi2html zlib1g-dev mkdir ~/ffmpeg_sources
- Server users can omit the ffplay and x11 dependencies: libsdl1.2-dev libva-dev libvdpau-dev libx11-dev libxext-dev libxfixes-dev.
- Ubuntu 10.04 Lucid users will need to install the git-core package instead of the git package. Lucid lacks the package libva-dev. This can be ignored.
Compilation & Installation
One advantage to compiling is that you can build ffmpeg to your liking. If you do not require certain encoders you may skip the relevant section and then remove the appropriate ./configure option in FFmpeg. For example, if libopus is not needed, then skip that section and then remove --enable-libopus from the Install FFmpeg section.
Yasm
Yasm is an assembler used by x264 and FFmpeg.
Ubuntu 13.10, Ubuntu 13.04, and Mint 15 users can alternatively install the yasm package from the repository instead of compiling.
cd ~/ffmpeg_sources wget http://www.tortall.net/projects/yasm/releases/yasm-1.2.0.tar.gz tar xzvf yasm-1.2.0.tar.gz cd yasm-1.2.0 ./configure --prefix="$HOME/ffmpeg_build" --bindir="$HOME/bin" make make install make distclean . ~/.profile
x264
H.264 video encoder. See the x264 Encoding Guide for more information and examples.
cd ~/ffmpeg_sources git clone --depth 1 git://git.videolan.org/x264.git cd x264 ./configure --prefix="$HOME/ffmpeg_build" --bindir="$HOME/bin" --enable-static make make install make distclean
Note: You can download the nightly x264 source snapshot as an alternative to using git.
fdk-aac
AAC audio encoder. See the AAC Encoding Guide for more information and examples.
cd ~/ffmpeg_sources git clone --depth 1 git://git.code.sf.net/p/opencore-amr/fdk-aac cd fdk-aac autoreconf -fiv ./configure --prefix="$HOME/ffmpeg_build" --disable-shared make make install make distclean
Note: You can download a fdk-aac source snapshot as an alternative to using git.
libmp3lame
MP3 audio encoder.
Most users can install the repository package:
sudo apt-get install libmp3lame-dev
Ubuntu 10.04 and Debian Squeeze users must compile:
sudo apt-get install nasm cd ~/ffmpeg_sources wget http://downloads.sourceforge.net/project/lame/lame/3.99/lame-3.99.5.tar.gz tar xzvf lame-3.99.5.tar.gz cd lame-3.99.5 ./configure --prefix="$HOME/ffmpeg_build" --enable-nasm --disable-shared make make install make distclean
libopus
Opus audio decoder and encoder.
Ubuntu 13.10, Ubuntu 13.04, and Mint 15 users can alternatively install the libopus-dev package from the repository instead of compiling.
cd ~/ffmpeg_sources wget http://downloads.xiph.org/releases/opus/opus-1.0.3.tar.gz tar xzvf opus-1.0.3.tar.gz cd opus-1.0.3 ./configure --prefix="$HOME/ffmpeg_build" --disable-shared make make install make distclean
libvpx
VP8/VP9 video encoder and decoder. See the vpx (WebM) Encoding Guide for more information and examples.
Ubuntu 13.10, Ubuntu 13.04, and Mint 15 users can alternatively install the libvpx-dev package from the repository instead of compiling.
cd ~/ffmpeg_sources git clone --depth 1 http://git.chromium.org/webm/libvpx.git cd libvpx ./configure --prefix="$HOME/ffmpeg_build" --disable-examples make make install make clean
Note: You can download a libvpx source snapshot as an alternative to using git.
ffmpeg
Note: Server users should remove --enable-x11grab from the following command:
cd ~/ffmpeg_sources git clone --depth 1 git://source.ffmpeg.org/ffmpeg cd ffmpeg PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig" export PKG_CONFIG_PATH ./configure --prefix="$HOME/ffmpeg_build" \ --extra-cflags="-I$HOME/ffmpeg_build/include" --extra-ldflags="-L$HOME/ffmpeg_build/lib" \ --bindir="$HOME/bin" --extra-libs="-ldl" --enable-gpl --enable-libass --enable-libfdk-aac \ --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvorbis --enable-libvpx \ --enable-libx264 --enable-nonfree --enable-x11grab make make install make distclean hash -r
Note: You can download the nightly FFmpeg source snapshot as an alternative to using git.
Finish
- Installation is now complete and ffmpeg is now ready for use. See the x264 Encoding Guide for examples.
- If you do not see FFmpeg developers in your ffmpeg console output then something went wrong and you're probably using the fake "ffmpeg" from the repository.
- HTML formatted documentation is available in ~/ffmpeg_build/share/doc/ffmpeg.
- You can keep the ffmpeg_sources directory if you plan on updating later. See Updating FFmpeg below for more details followed by instructions for reverting all changes made by this guide.
Updating FFmpeg
Development of FFmpeg is active and an occasional update can give you new features and bug fixes. First, remove (or move) the old files and then update the dependencies:
rm -rf ~/ffmpeg_build ~/bin/{ffmpeg,ffprobe,ffserver,vsyasm,x264,yasm,ytasm} sudo apt-get update sudo apt-get -y install autoconf automake build-essential git libass-dev libgpac-dev \ libsdl1.2-dev libtheora-dev libtool libva-dev libvdpau-dev libvorbis-dev libx11-dev \ libxext-dev libxfixes-dev pkg-config texi2html zlib1g-dev
Server users can omit: libsdl1.2-dev libva-dev libvdpau-dev libx11-dev libxext-dev libxfixes-dev.
x264
cd ~/ffmpeg_sources/x264 make distclean git pull
Now run ./configure, make, and make install as shown in the Install x264 section.
fdk-aac
cd ~/ffmpeg_sources/fdk-aac make distclean git pull
Now run ./configure, make, and make install as shown in the Install fdk-aac section.
libvpx
cd ~/ffmpeg_sources/libvpx make clean git pull
Now run ./configure, make, and make install as shown in the Install libvpx section.
ffmpeg
cd ~/ffmpeg_sources/ffmpeg make distclean git pull
Now run ./configure, make, and make install as shown in the Install FFmpeg section.
Reverting Changes Made by This Guide
To remove ffmpeg, x264, and dependencies installed for this guide:
rm -rf ~/ffmpeg_build ~/ffmpeg_sources ~/bin/{ffmpeg,ffprobe,ffserver,vsyasm,x264,yasm,ytasm} sudo apt-get autoremove autoconf automake build-essential git libass-dev libgpac-dev \ libmp3lame-dev libopus-dev libsdl1.2-dev libtheora-dev libtool libva-dev libvdpau-dev \ libvorbis-dev libvpx-dev libx11-dev libxext-dev libxfixes-dev texi2html zlib1g-dev hash -r
If You Need Help
Feel free to ask questions at the #ffmpeg IRC channel or the ffmpeg-user mailing list.
相关推荐
- `-c copy`:告诉FFmpeg尽可能地进行无损复用,即将原始流的数据直接复制到新的MP4文件中,避免重新编码导致质量损失。 - `-bsf:a aac_adtstoasc`:对于AAC音频,可能需要这个比特流过滤器来确保容器兼容性,特别是...
总之,FFmpeg 6.0 在 Ubuntu 20.04 上的编译版本是一个强大的多媒体处理工具,支持多种协议和编码格式,尤其适用于需要高效处理 H.264 和 H.265 视频的场景。提供的 "build" 文件为开发者提供了宝贵的资源,以便于...
FFmpeg是一款强大的开源多媒体处理工具,它包含了音视频编码、解码、转码、流处理等功能。DeckLink是Blackmagic Design公司开发的一系列专业级视频输入/输出接口卡,广泛应用于视频制作和后期处理领域。在Ubuntu系统...
例如,可以使用`ffmpeg -f v4l2 -i /dev/video0 output.mp4`命令来捕获摄像头的视频流并保存到output.mp4文件。Qt可以调用FFmpeg的库函数,通过系统调用来实现实时采集并显示在GUI中。 **视频预览**:Qt的QImage和...
FFmpeg是一款强大的开源命令行工具,用于处理多媒体文件,包括视频、音频的转换、合并、分割、裁剪等操作。在本教程中,我们将聚焦于FFmpeg如何向视频文件中添加字幕,这个功能对于创建有字幕的多媒体内容至关重要,...
1. **安装FFmpeg**:在Ubuntu上,可以通过终端使用`apt`命令来安装FFmpeg: ``` sudo apt update sudo apt install ffmpeg ``` 2. **创建推流脚本**:`ffmpeg_push.sh`是一个bash脚本,用于定义FFmpeg如何抓取...
在Ubuntu操作系统中,使用SDL(Simple DirectMedia Layer)和FFmpeg库进行音视频播放和实时流媒体处理是一项常见的任务。这两个强大的开源工具为开发者提供了在Linux环境下构建多媒体应用的便捷途径。 SDL是一个跨...
本文介绍了如何使用ffmpeg在Ubuntu系统中录制音频和视频的方法。通过上述命令,用户可以轻松地录制自己的音频或屏幕活动,并将它们保存为不同的格式。此外,还可以通过访问官方网站获取更多关于ffmpeg使用的文档,...
综上所述,这个Ubuntu 18.04编译的FFmpeg 5.1动态库是一个全面的多媒体处理解决方案,包含了多种关键特性,如加密支持、图形界面、高效视频编码解码以及流媒体处理能力,适用于各种开发场景,无论是开发视频播放器、...
FFmpeg 是一个强大的开源项目,用于处理音频和视频文件,包括转换、编码、解码、流处理等功能。在Ubuntu环境中安装FFmpeg,通常涉及到下载源码、编译以及配置依赖等步骤。本教程将详细讲解如何在Ubuntu系统下安装...
FFmpeg是一款强大的开源多媒体处理工具,它包含了音频和视频的编码、解码、转换、流化等功能。在Ubuntu 16.04系统上安装FFmpeg,你需要掌握以下几个关键知识点: 1. **软件源和更新**: 在安装任何软件之前,首先...
FFmpeg 是一个强大的开源多媒体处理工具,用于处理音频和视频文件。它包含了多个库,如 libavcodec(编码器库)、libavformat(容器格式库)和 libavfilter(滤镜库),支持广泛的编码、解码、转换和流媒体功能。在...
FFmpeg 是一个强大的开源工具集,用于处理音频和视频文件,包括编码、解码、转换、流媒体等任务。在Linux环境下,FFmpeg的安装对于Java开发者尤其重要,因为可以利用它来实现在JAVA应用程序中进行视频格式转换和截图...
在这个“FFMPEG_音频编码PCM_MP3_本地文件”的主题中,我们将深入探讨如何使用FFmpeg进行音频编码,特别是将原始的无损音频格式如PCM转化为有损但更常见的MP3格式,以及在本地文件系统上执行这些操作。 **PCM...
FFmpeg 是一个强大的开源工具,用于处理音频和视频文件,包括转换、编码、解码、分割、合并等操作。在Linux环境下,通过脚本安装FFmpeg可以自动化整个过程,提高效率并确保安装正确无误。以下是一份详细的FFmpeg在...
FFmpeg是一个强大的命令行工具,用于处理音频和视频文件,包括转换、编码、解码、分割、合并等多种功能。本指南将详细介绍如何在Ubuntu上从源码编译并安装FFmpeg。 首先,确保你的Ubuntu系统是最新的。打开终端并...
FFmpeg是一个强大的开源工具,用于处理音频和视频文件,包括转换、编码、解码、封装和流化。下面将详细介绍如何在Linux系统中安装FFmpeg,以及涉及的一些关键组件。 首先,我们需要了解FFmpeg的依赖项。在提供的...
安装完成后,你可以开始利用FFmpeg进行音视频处理,例如,将一个视频文件转换为MP4格式: ```bash ffmpeg -i input_video.avi output_video.mp4 ``` 9. **注意事项** - 不同Linux发行版可能需要不同的安装步骤...
在本文中,我们将深入探讨如何使用 FFmpeg 将非 RM 和 RMVB 格式的视频转换为 FLV 格式,并提供相关教程、FFmpeg 组件以及 mp4 视频的转换方法。 首先,让我们了解 FFmpeg 的基本概念。FFmpeg 包含了一系列的库和...
- 不同Linux发行版可能需要不同的安装方法,如使用包管理器(如apt、yum)或通过源码编译。 - 某些库可能需要额外的开发头文件和库文件,安装时注意检查系统环境。 通过这个压缩包提供的文件,用户可以快速搭建...