今天我发现 x265 已经存在于 ffmpeg 中,所以我用这个编译了 ffmpeg指导
遗憾的是 libx265 在 ubuntu 上无法运行,不过我在 windows 上尝试了同样的事情zeranoe ffmpeg 构建并且一切运行顺利。
那么,您认为我做错了什么吗?或者它尚未在 Linux 构建中实现(使用该指南)?命令结果ffmpeg -codecs | grep -i hevc
显示:
ffmpeg version 2.1.git Copyright (c) 2000-2014 the FFmpeg developers
built on Feb 19 2014 19:00:17 with gcc 4.8 (Ubuntu/Linaro 4.8.1-10ubuntu9)
configuration: --prefix=/home/levan/ffmpeg_build --extra-cflags=-I/home/levan/ffmpeg_build/include --extra-ldflags=-L/home/levan/ffmpeg_build/lib --bindir=/home/levan/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
libavutil 52. 64.100 / 52. 64.100
libavcodec 55. 52.102 / 55. 52.102
libavformat 55. 33.100 / 55. 33.100
libavdevice 55. 10.100 / 55. 10.100
libavfilter 4. 1.102 / 4. 1.102
libswscale 2. 5.101 / 2. 5.101
libswresample 0. 17.104 / 0. 17.104
libpostproc 52. 3.100 / 52. 3.100
D.V.L. hevc H.265 / HEVC (High Efficiency Video Coding)
感谢您的时间
答案1
目前(2014 年 2 月 19 日),您编译的 ffmpeg 版本仅支持解码,而不支持编码。
从命令的输出中:
DVL hevc H.265 / HEVC(高效视频编码)
Codecs:
D..... = Decoding supported
.E.... = Encoding supported
..V... = Video codec
..A... = Audio codec
..S... = Subtitle codec
...I.. = Intra frame-only codec
....L. = Lossy compression
.....S = Lossless compression
你可以尝试这个预编译的二进制文件 -https://code.google.com/p/x265/downloads/detail?name=x265-bin-ffmpeg-201206-preview2.zip&can=2&q=&sort=-uploaded
答案2
你可以获得一个内置 x265 编码和解码的软件包这里。
从已发布下拉框中选择您的操作系统版本,以筛选适合您的 Ubuntu 版本的软件包。
将 PPA 添加到您的 sources.lst
deb http://ppa.launchpad.net/motumedia/ffmpeg-daily/ubuntu YOUR_UBUNTU_VERSION_HERE main
就我而言,它是值得信赖的,所以我添加了deb http://ppa.launchpad.net/motumedia/ffmpeg-daily/ubuntu trusty main
享受!
请注意,这些是每日构建,并且“它们旨在用于测试重建和依赖包的测试。请勿在生产系统上启用此 PPA!”话虽如此,我在添加此 PPA 的系统上没有遇到任何问题,并且(至少对我来说)速度的提升非常值得冒这个险。
ffmpeg -codecs |grep 265
ffmpeg version 2.8.1-1~14.04~motumedia0 Copyright (c) 2000-2015 the FFmpeg developers
built with gcc 4.8 (Ubuntu 4.8.4-2ubuntu1~14.04)
configuration: --prefix=/usr --extra-version='1~14.04~motumedia0' --build-suffix=-ffmpeg --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --enable-gpl --enable-shared --disable-stripping --disable-decoder=libopenjpeg --disable-decoder=libschroedinger --enable-avresample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmodplug --enable-libmp3lame --enable-libopenjpeg --enable-openal --enable-libopus --enable-libpulse --enable-librtmp --enable-libschroedinger --enable-libshine --enable-libsnappy --enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxvid --enable-libzvbi --enable-opengl --enable-x11grab --enable-libiec61883 --enable-libdc1394 --enable-libzmq --enable-frei0r --enable-libx264 --enable-libopencv
libavutil 54. 31.100 / 54. 31.100
libavcodec 56. 60.100 / 56. 60.100
libavformat 56. 40.101 / 56. 40.101
libavdevice 56. 4.100 / 56. 4.100
libavfilter 5. 40.101 / 5. 40.101
libavresample 2. 1. 0 / 2. 1. 0
libswscale 3. 1.101 / 3. 1.101
libswresample 1. 2.101 / 1. 2.101
libpostproc 53. 3.100 / 53. 3.100
DEV.L. hevc H.265 / HEVC (High Efficiency Video Coding) (encoders: libx265 )
在全新安装的 Trusty 64 位上进行了测试,发现它比我尝试过的以前版本快得多。
答案3
您链接到的指南目前缺少编译 ffmpeg 的 x265 支持的必要说明,因此毫不奇怪您的构建没有 x265 支持而其他人的构建有。
您有 3 个选择:
- 您可以关注x265 wiki 上的说明构建独立编码器。
- 请查看本指南中如何包含 x264,以了解如何构建支持 x264 的 ffmpeg(或放弃ffmpeg 与 x265在您最喜欢的搜索引擎中(我的不是 Google))。
- 或者,您也可以只使用带有 Wine 的 Windows 二进制文件。
请注意,与 x264 不同,x265 并不托管在 VideoLAN 的 git 存储库中(页虽然存在),但 bitbucket 上另一家专注于 x265 开发的公司。简单地将指南中的 x264 替换为 x265 是行不通的。
请记住,x265 就像它的强大竞争者达拉仍处于早期开发阶段(x265 几周前才发布功能版本)。
答案4
我编写了一个使用 libx265 和 AAC 选项编译的 ffmpeg 安装脚本。
#!/bin/bash
source installer.cfg
function display_message {
clear
echo $1
sleep 5
}
function update_sys {
display_message "Updating Ubuntu using apt-get update"
apt-get update
display_message "Installing required packages"
apt-get install -y autoconf automake build-essential mercurial git libarchive-dev fontconfig checkinstall
apt-get install -y libass-dev libfreetype6-dev libsdl1.2-dev libtheora-dev libgnutls-dev
apt-get install -y libxcb1-dev libxcb-shm0-dev libxcb-xfixes0-dev pkg-config texinfo libtool libva-dev
apt-get install -y libbs2b-dev libcaca-dev libopenjpeg-dev librtmp-dev libvpx-dev libvdpau-dev
apt-get install -y libwavpack-dev libxvidcore-dev lzma-dev liblzma-dev zlib1g-dev cmake-curses-gui
apt-get install -y libx11-dev libxfixes-dev libmp3lame-dev libx264-dev #libx264-146 libx264-dev
sleep 5
}
function install_libnuma {
NUMA_LIB="numactl-2.0.11.tar.gz"
NUMA_PATH=$(basename ${NUMA_LIB} .tar.gz)
cd ${SOURCE_PREFIX}
if [ ! -d "${NUMA_PATH}" ];then
wget -O ${NUMA_LIB} "ftp://oss.sgi.com/www/projects/libnuma/download/${NUMA_LIB}"
fi
tar xfzv ${NUMA_LIB}
cd ${NUMA_PATH}
./configure
make
make install
sleep 5
}
function install_libopus {
OPUS_LIB=opus-1.1.2.tar.gz
OPUS_PATH=$(basename ${OPUS_LIB} .tar.gz)
cd ${SOURCE_PREFIX}
if [ ! -d "${OPUS_PATH}" ];then
wget http://downloads.xiph.org/releases/opus/${OPUS_LIB}
fi
tar xzvf ${OPUS_LIB}
cd ${OPUS_PATH}
./configure --prefix="${INST_PREFIX}" --disable-shared
make
make install
make check
make clean
sleep 5
}
function install_cmake {
cd ${SOURCE_PREFIX}
#Need further testing
if [ ! -d "CMake" ];then
git clone https://github.com/Kitware/CMake
fi
cd CMake
./bootstrap --prefix="/usr/local"
make
make install
sleep 5
}
function install_aac {
AAC_LIB="fdk-aac.tar.gz"
cd ${SOURCE_PREFIX}
if [ ! -d "mstorsjo-fdk-aac*" ];then
wget -O ${AAC_LIB} https://github.com/mstorsjo/fdk-aac/tarball/master
fi
tar xzvf ${AAC_LIB}
cd mstorsjo-fdk-aac*
autoreconf -fiv
./configure --prefix="${INST_PREFIX}" --disable-shared
make
make install
make distclean
sleep 5
}
function install_yasm {
cd ${SOURCE_PREFIX}
if [ ! -d "yasm" ];then
git clone git://github.com/yasm/yasm.git
fi
cd yasm
./autogen.sh
}
function install_x265 {
cd ${SOURCE_PREFIX}
if [ ! -d "x265" ];then
hg clone https://bitbucket.org/multicoreware/x265
fi
cd x265/build/linux
cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX="${INST_PREFIX}" ../../source
make
make install
sleep 5
}
function install_ffmpeg {
cd ${SOURCE_PREFIX}
if [ ! -d "ffmpeg" ];then
git clone git://source.ffmpeg.org/ffmpeg.git
fi
cd ffmpeg
PKG_CONFIG_PATH="${INST_PREFIX}/pkgconfig" \
./configure --prefix="${INST_PREFIX}" \
--pkg-config-flags="--static" \
--extra-cflags="-I${INST_PREFIX}/include" \
--extra-ldflags="-L${INST_PREFIX}/lib" \
--enable-gpl \
--enable-libass \
--enable-libbluray \
--enable-fontconfig \
--enable-bzlib \
--enable-gnutls \
--enable-libbs2b \
--enable-libcaca \
--enable-zlib \
--enable-libopenjpeg \
--enable-librtmp \
--enable-libvo-amrwbenc \
--enable-libwavpack \
--enable-lzma \
--enable-libfdk-aac \
--enable-libfreetype \
--enable-libmp3lame \
--enable-libopus \
--enable-libtheora \
--enable-libvpx \
--enable-libx264 \
--enable-libx265 \
--enable-nonfree \
--enable-version3
make
make install
sleep 5
}
function testing {
cd ${SOURCE_PREFIX}
"${INST_PREFIX}"/bin/ffmpeg -i ${TEST_VID} -c:v libx265 -c:a aac test.mp4
if [ $? -eq 0 ];then
echo "TEST PASSED!"
else
echo "TEST FAILED!. CONTAINS ERRORS!"
exit
fi
sleep 5
}
display_message "Update Ubuntu System"
update_sys
#if [ ! -d ${SOURCE_PREFIX} ];then
# mkdir ${SOURCE_PREFIX}
#fi
if [ ${SOURCE_PREFIX} != "/usr" ];then
mkdir ${INST_PREFIX}
fi
#Install Latest libnuma
display_message "Installing libnuma-dev"
install_libnuma
#Install libopus
display_message "Installing libopus-dev"
install_libopus
#Install CMAKE
display_message "Installing CMake" | tee logfile
install_cmake
#Install latest libfdk-aac-dev
display_message "Installing fdk-aac" | tee logfile
install_aac
#Install latest YASM
display_message "Installing YASM" | tee logfile
install_yasm
#Use the latest x265 codec
display_message "Installing libx265-dev" | tee logfile
install_x265
#Install ffmpeg
display_message "Installing ffmpeg" | tee logfile
install_ffmpeg
#Conduct testing
display_message "Conduct testing"
testing
echo "DONE!"
sleep 5