redhat:other-redhat:transcoding-tools-redhat

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
redhat:other-redhat:transcoding-tools-redhat [2017/10/21 13:45] michaelredhat:other-redhat:transcoding-tools-redhat [2017/10/21 14:22] (current) michael
Line 23: Line 23:
 # yum install autoconf automake bzip2 cmake freetype-devel gcc gcc-c++ git libtool make mercurial nasm pkgconfig zlib-devel wget # yum install autoconf automake bzip2 cmake freetype-devel gcc gcc-c++ git libtool make mercurial nasm pkgconfig zlib-devel wget
  
-# mkdir -p /opt/ffmpeg/sources+# mkdir -p /usr/src/ffmpeg_sources
  
  
Line 29: Line 29:
 ------------------------------------------------------------ ------------------------------------------------------------
  
-# cd /opt/ffmpeg/sources+# cd /usr/src/ffmpeg_sources
 curl -O http://www.tortall.net/projects/yasm/releases/yasm-1.3.0.tar.gz curl -O http://www.tortall.net/projects/yasm/releases/yasm-1.3.0.tar.gz
 tar xzvf yasm-1.3.0.tar.gz tar xzvf yasm-1.3.0.tar.gz
 cd yasm-1.3.0 cd yasm-1.3.0
-./configure --prefix="$HOME/ffmpeg_build" --bindir="$HOME/bin"+./configure --prefix="/usr/local/ffmpeg_build" --bindir="/usr/local/bin"
 make make
 make install make install
Line 41: Line 41:
 ------------------------------------------------------------ ------------------------------------------------------------
  
-# cd /opt/ffmpeg/sources+# cd /usr/src/ffmpeg_sources
 # git clone --depth 1 http://git.videolan.org/git/x264 # git clone --depth 1 http://git.videolan.org/git/x264
 # cd x264 # cd x264
-./configure --prefix="$HOME/ffmpeg_build" --bindir="$HOME/bin" --enable-static+./configure --prefix="/usr/local/ffmpeg_build" --bindir="/usr/local/bin" --enable-static
 make make
 make install make install
Line 52: Line 52:
 ------------------------------------------------------------ ------------------------------------------------------------
  
-# cd /opt/ffmpeg/sources+# cd /usr/src/ffmpeg_sources
 hg clone https://bitbucket.org/multicoreware/x265 hg clone https://bitbucket.org/multicoreware/x265
 cd ~/ffmpeg_sources/x265/build/linux cd ~/ffmpeg_sources/x265/build/linux
-cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX="$HOME/ffmpeg_build" -DENABLE_SHARED:bool=off ../../source+cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX="/usr/local/ffmpeg_build" -DENABLE_SHARED:bool=off ../../source 
 +make 
 +make install 
 + 
 + 
 +Install libxvid: 
 +------------------------------------------------------------ 
 + 
 +# cd /usr/src/ffmpeg_sources 
 +hg clone https://bitbucket.org/multicoreware/x265 
 +cd ~/ffmpeg_sources/x265/build/linux 
 +cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX="/usr/local/ffmpeg_build" -DENABLE_SHARED:bool=off ../../source
 make make
 make install make install
Line 63: Line 74:
 ------------------------------------------------------------ ------------------------------------------------------------
  
-# cd /opt/ffmpeg/sources+# cd /usr/src/ffmpeg_sources
 git clone --depth 1 https://github.com/mstorsjo/fdk-aac git clone --depth 1 https://github.com/mstorsjo/fdk-aac
 cd fdk-aac cd fdk-aac
 autoreconf -fiv autoreconf -fiv
-./configure --prefix="$HOME/ffmpeg_build" --disable-shared+./configure --prefix="/usr/local/ffmpeg_build" --disable-shared
 make make
 make install make install
Line 75: Line 86:
 ------------------------------------------------------------ ------------------------------------------------------------
  
-# cd /opt/ffmpeg/sources+# cd /usr/src/ffmpeg_sources
 curl -L -O http://downloads.sourceforge.net/project/lame/lame/3.99/lame-3.99.5.tar.gz curl -L -O http://downloads.sourceforge.net/project/lame/lame/3.99/lame-3.99.5.tar.gz
 tar xzvf lame-3.99.5.tar.gz tar xzvf lame-3.99.5.tar.gz
 cd lame-3.99.5 cd lame-3.99.5
-./configure --prefix="$HOME/ffmpeg_build" --bindir="$HOME/bin" --disable-shared --enable-nasm+./configure --prefix="/usr/local/ffmpeg_build" --bindir="/usr/local/bin" --disable-shared --enable-nasm
 make make
 make install make install
Line 87: Line 98:
 ------------------------------------------------------------ ------------------------------------------------------------
  
-# cd /opt/ffmpeg/sources+# cd /usr/src/ffmpeg_sources
 curl -O https://archive.mozilla.org/pub/opus/opus-1.1.5.tar.gz curl -O https://archive.mozilla.org/pub/opus/opus-1.1.5.tar.gz
 tar xzvf opus-1.1.5.tar.gz tar xzvf opus-1.1.5.tar.gz
 cd opus-1.1.5 cd opus-1.1.5
-./configure --prefix="$HOME/ffmpeg_build" --disable-shared+./configure --prefix="/usr/local/ffmpeg_build" --disable-shared
 make make
 make install make install
Line 99: Line 110:
 ------------------------------------------------------------ ------------------------------------------------------------
  
-# cd /opt/ffmpeg/sources+# cd /usr/src/ffmpeg_sources
 curl -O http://downloads.xiph.org/releases/ogg/libogg-1.3.2.tar.gz curl -O http://downloads.xiph.org/releases/ogg/libogg-1.3.2.tar.gz
 tar xzvf libogg-1.3.2.tar.gz tar xzvf libogg-1.3.2.tar.gz
 cd libogg-1.3.2 cd libogg-1.3.2
-./configure --prefix="$HOME/ffmpeg_build" --disable-shared+./configure --prefix="/usr/local/ffmpeg_build" --disable-shared
 make make
 make install make install
Line 111: Line 122:
 ------------------------------------------------------------ ------------------------------------------------------------
  
-# cd /opt/ffmpeg/sources+# cd /usr/src/ffmpeg_sources
 curl -O http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.4.tar.gz curl -O http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.4.tar.gz
 tar xzvf libvorbis-1.3.4.tar.gz tar xzvf libvorbis-1.3.4.tar.gz
 cd libvorbis-1.3.4 cd libvorbis-1.3.4
-./configure --prefix="$HOME/ffmpeg_build" --with-ogg="$HOME/ffmpeg_build" --disable-shared+./configure --prefix="/usr/local/ffmpeg_build" --with-ogg="/usr/local/ffmpeg_build" --disable-shared
 make make
 make install make install
Line 123: Line 134:
 ------------------------------------------------------------ ------------------------------------------------------------
  
-# cd /opt/ffmpeg/sources+# cd /usr/src/ffmpeg_sources
 git clone --depth 1 https://chromium.googlesource.com/webm/libvpx.git git clone --depth 1 https://chromium.googlesource.com/webm/libvpx.git
 cd libvpx cd libvpx
-./configure --prefix="$HOME/ffmpeg_build" --disable-examples --disable-unit-tests --enable-vp9-highbitdepth --as=yasm +./configure --prefix="/usr/local/ffmpeg_build" --disable-examples --disable-unit-tests --enable-vp9-highbitdepth --as=yasm 
-PATH="$HOME/bin:$PATH" make+PATH="/usr/local/bin:$PATH" make
 make install make install
  
Line 134: Line 145:
 ------------------------------------------------------------ ------------------------------------------------------------
  
-# cd /opt/ffmpeg/sources+# cd /usr/src/ffmpeg_sources
 curl -O http://ffmpeg.org/releases/ffmpeg-snapshot.tar.bz2 curl -O http://ffmpeg.org/releases/ffmpeg-snapshot.tar.bz2
 tar xjvf ffmpeg-snapshot.tar.bz2 tar xjvf ffmpeg-snapshot.tar.bz2
 cd ffmpeg cd ffmpeg
-PATH="$HOME/bin:$PATH" PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig" ./configure \ +PATH="/usr/local/bin:$PATH" PKG_CONFIG_PATH="/usr/local/ffmpeg_build/lib/pkgconfig" ./configure \ 
-  --prefix="$HOME/ffmpeg_build" \+  --prefix="/usr/local/ffmpeg_build" \
   --pkg-config-flags="--static" \   --pkg-config-flags="--static" \
-  --extra-cflags="-I$HOME/ffmpeg_build/include"+  --extra-cflags="-I/usr/local/ffmpeg_build/include"
-  --extra-ldflags="-L$HOME/ffmpeg_build/lib" \+  --extra-ldflags="-L/usr/local/ffmpeg_build/lib" \
   --extra-libs=-lpthread \   --extra-libs=-lpthread \
-  --bindir="$HOME/bin" \+  --bindir="/usr/local/bin" \
   --enable-gpl \   --enable-gpl \
   --enable-libfdk_aac \   --enable-libfdk_aac \
Line 154: Line 165:
   --enable-libx264 \   --enable-libx264 \
   --enable-libx265 \   --enable-libx265 \
 +  --enable-libxvid \
   --enable-nonfree   --enable-nonfree
 make make
Line 159: Line 171:
 hash -r hash -r
  
 +# ldconfig
  
  
Line 164: Line 177:
  
   * For Updateing: -> https://trac.ffmpeg.org/wiki/CompilationGuide/Centos   * For Updateing: -> https://trac.ffmpeg.org/wiki/CompilationGuide/Centos
 +  * https://www.vimp.com/de/web/faq-installation/items/how-to-install-the-transcoding-tools-on-redhat-centos-64.html
 +  * https://underhost.com/blog/install-ffmpeg-on-centos/
   * https://www.interserver.net/tips/kb/steps-install-ffmpeg-modules/   * https://www.interserver.net/tips/kb/steps-install-ffmpeg-modules/
   * http://marx.server.co.ba/2015/12/installing-ffmpeg-on-centos-7/   * http://marx.server.co.ba/2015/12/installing-ffmpeg-on-centos-7/
  • redhat/other-redhat/transcoding-tools-redhat.1508586332.txt.gz
  • Last modified: 2017/10/21 13:45
  • by michael