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
Next revision
Previous revision
redhat:other-redhat:transcoding-tools-redhat [2017/09/15 22:19] michaelredhat:other-redhat:transcoding-tools-redhat [2017/10/21 14:22] (current) michael
Line 2: Line 2:
  
 <WRAP center box 100%> <WRAP center box 100%>
-===== Installation Mencoder,Mplayer und ffmpeg =====+==== Installation Mencoder,Mplayer und ffmpeg mit Packet ====
  
 <code> <code>
-yum -y install http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-5.el7.nux.noarch.rpm +yum -y install http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-5.el7.nux.noarch.rpm 
-yum update+yum update
  
-yum install mencoder.x86_64 mplayer.x86_64 +yum install mencoder.x86_64 mplayer.x86_64 
-yum install ffmpeg.x86_64 ffmpeg-devel.x86_64 ffmpeg-libs.x86_64+yum install ffmpeg.x86_64 ffmpeg-devel.x86_64 ffmpeg-libs.x86_64
 </code> </code>
 +
 +''http://www.elinuxbook.com/install-mplayer-in-linux/''
 +
 +---- 
 +
 +<wrap em>Alternativ: FFmpeg mit allen Erweiterungen selber kompilieren:</wrap>
 +
 +<code># yum remove ffmpeg ffmpeg-devel ffmpeg-libs libvpx libogg libvorbis libtheora libx264 x264 -y
 +
 +# yum-config-manager --add-repo http://www.nasm.us/nasm.repo
 +# yum install autoconf automake bzip2 cmake freetype-devel gcc gcc-c++ git libtool make mercurial nasm pkgconfig zlib-devel wget
 +
 +# mkdir -p /usr/src/ffmpeg_sources
 +
 +
 +Install Yasm:
 +------------------------------------------------------------
 +
 +# cd /usr/src/ffmpeg_sources
 +curl -O http://www.tortall.net/projects/yasm/releases/yasm-1.3.0.tar.gz
 +tar xzvf yasm-1.3.0.tar.gz
 +cd yasm-1.3.0
 +./configure --prefix="/usr/local/ffmpeg_build" --bindir="/usr/local/bin"
 +make
 +make install
 +
 +
 +Install libx264:
 +------------------------------------------------------------
 +
 +# cd /usr/src/ffmpeg_sources
 +# git clone --depth 1 http://git.videolan.org/git/x264
 +# cd x264
 +./configure --prefix="/usr/local/ffmpeg_build" --bindir="/usr/local/bin" --enable-static
 +make
 +make install
 +
 +
 +Install libx265:
 +------------------------------------------------------------
 +
 +# 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 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 install
 +
 +
 +Install libfdk_aac:
 +------------------------------------------------------------
 +
 +# cd /usr/src/ffmpeg_sources
 +git clone --depth 1 https://github.com/mstorsjo/fdk-aac
 +cd fdk-aac
 +autoreconf -fiv
 +./configure --prefix="/usr/local/ffmpeg_build" --disable-shared
 +make
 +make install
 +
 +
 +Install libmp3lame:
 +------------------------------------------------------------
 +
 +# cd /usr/src/ffmpeg_sources
 +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
 +cd lame-3.99.5
 +./configure --prefix="/usr/local/ffmpeg_build" --bindir="/usr/local/bin" --disable-shared --enable-nasm
 +make
 +make install
 +
 +
 +Install libopus:
 +------------------------------------------------------------
 +
 +# cd /usr/src/ffmpeg_sources
 +curl -O https://archive.mozilla.org/pub/opus/opus-1.1.5.tar.gz
 +tar xzvf opus-1.1.5.tar.gz
 +cd opus-1.1.5
 +./configure --prefix="/usr/local/ffmpeg_build" --disable-shared
 +make
 +make install
 +
 +
 +Install libogg:
 +------------------------------------------------------------
 +
 +# cd /usr/src/ffmpeg_sources
 +curl -O http://downloads.xiph.org/releases/ogg/libogg-1.3.2.tar.gz
 +tar xzvf libogg-1.3.2.tar.gz
 +cd libogg-1.3.2
 +./configure --prefix="/usr/local/ffmpeg_build" --disable-shared
 +make
 +make install
 +
 +
 +Install libvorbis:
 +------------------------------------------------------------
 +
 +# cd /usr/src/ffmpeg_sources
 +curl -O http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.4.tar.gz
 +tar xzvf libvorbis-1.3.4.tar.gz
 +cd libvorbis-1.3.4
 +./configure --prefix="/usr/local/ffmpeg_build" --with-ogg="/usr/local/ffmpeg_build" --disable-shared
 +make
 +make install
 +
 +
 +Install libvpx:
 +------------------------------------------------------------
 +
 +# cd /usr/src/ffmpeg_sources
 +git clone --depth 1 https://chromium.googlesource.com/webm/libvpx.git
 +cd libvpx
 +./configure --prefix="/usr/local/ffmpeg_build" --disable-examples --disable-unit-tests --enable-vp9-highbitdepth --as=yasm
 +PATH="/usr/local/bin:$PATH" make
 +make install
 +
 +
 +Install FFmpeg:
 +------------------------------------------------------------
 +
 +# cd /usr/src/ffmpeg_sources
 +curl -O http://ffmpeg.org/releases/ffmpeg-snapshot.tar.bz2
 +tar xjvf ffmpeg-snapshot.tar.bz2
 +cd ffmpeg
 +PATH="/usr/local/bin:$PATH" PKG_CONFIG_PATH="/usr/local/ffmpeg_build/lib/pkgconfig" ./configure \
 +  --prefix="/usr/local/ffmpeg_build" \
 +  --pkg-config-flags="--static" \
 +  --extra-cflags="-I/usr/local/ffmpeg_build/include" \
 +  --extra-ldflags="-L/usr/local/ffmpeg_build/lib" \
 +  --extra-libs=-lpthread \
 +  --bindir="/usr/local/bin" \
 +  --enable-gpl \
 +  --enable-libfdk_aac \
 +  --enable-libfreetype \
 +  --enable-libmp3lame \
 +  --enable-libopus \
 +  --enable-libvorbis \
 +  --enable-libvpx \
 +  --enable-libx264 \
 +  --enable-libx265 \
 +  --enable-libxvid \
 +  --enable-nonfree
 +make
 +make install
 +hash -r
 +
 +# ldconfig
 +
 +
 +</code>
 +
 +  * 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/
 +  * http://marx.server.co.ba/2015/12/installing-ffmpeg-on-centos-7/
  
 </WRAP> </WRAP>
 +
 +
 +
 +
 +
 +
  
 ---- ----
  
 <WRAP center box 100%> <WRAP center box 100%>
-===== Installation Mediainfo =====+==== Installation Mediainfo ====
 <code> <code>
-yum install mediainfo+yum install mediainfo
 </code> </code>
 </WRAP> </WRAP>
Line 26: Line 202:
  
 <WRAP center box 100%> <WRAP center box 100%>
-===== Installation NeroAacEnc =====+==== Installation NeroAacEnc ====
 <code> <code>
 # cd /usr/local/src # cd /usr/local/src
Line 41: Line 217:
  
 <WRAP center box 100%> <WRAP center box 100%>
-===== Installation MP4Box =====+==== Installation MP4Box ====
 <code> <code>
-yum install -y gpac+yum install -y gpac
 </code> </code>
 </WRAP> </WRAP>
  
 +----
  
 <WRAP center box 100%> <WRAP center box 100%>
-===== Installation FLVTool2 =====+==== Installation FLVTool2 ====
 <code> <code>
-yum install -y ruby rubygems +yum install -y ruby rubygems 
-gem install flvtool2+gem install flvtool2
 </code> </code>
 </WRAP> </WRAP>
  
 +----
  
 <WRAP center box 100%> <WRAP center box 100%>
-===== Installation Yamdi =====+==== Installation Yamdi ====
 <code> <code>
-yum install gcc-c++ make+yum install gcc-c++ make
  
-cd /usr/local/src +cd /usr/local/src 
-wget  "http://downloads.sourceforge.net/project/yamdi/yamdi/1.9/yamdi-1.9.tar.gz" +wget  "http://downloads.sourceforge.net/project/yamdi/yamdi/1.9/yamdi-1.9.tar.gz" 
-tar zxvf yamdi-1.9.tar.gz +tar zxvf yamdi-1.9.tar.gz 
-cd yamdi-1.9  +cd yamdi-1.9  
-gcc yamdi.c -o yamdi -O2 -Wall +gcc yamdi.c -o yamdi -O2 -Wall 
-cp yamdi /usr/bin/+cp yamdi /usr/bin/
 </code> </code>
 </WRAP> </WRAP>
  
 +----
  
 <sxh bash> <sxh bash>
  • redhat/other-redhat/transcoding-tools-redhat.1505506756.txt.gz
  • Last modified: 2017/09/15 22:19
  • by michael