Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
redhat:other-redhat:transcoding-tools-redhat [2017/09/15 22:19] – michael | redhat: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, | + | ==== Installation Mencoder, |
< | < | ||
- | yum -y install http:// | + | # yum -y install http:// |
- | 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 |
</ | </ | ||
+ | |||
+ | '' | ||
+ | |||
+ | ---- | ||
+ | |||
+ | <wrap em> | ||
+ | |||
+ | < | ||
+ | |||
+ | # yum-config-manager --add-repo http:// | ||
+ | # yum install autoconf automake bzip2 cmake freetype-devel gcc gcc-c++ git libtool make mercurial nasm pkgconfig zlib-devel wget | ||
+ | |||
+ | # mkdir -p / | ||
+ | |||
+ | |||
+ | Install Yasm: | ||
+ | ------------------------------------------------------------ | ||
+ | |||
+ | # cd / | ||
+ | curl -O http:// | ||
+ | tar xzvf yasm-1.3.0.tar.gz | ||
+ | cd yasm-1.3.0 | ||
+ | ./configure --prefix="/ | ||
+ | make | ||
+ | make install | ||
+ | |||
+ | |||
+ | Install libx264: | ||
+ | ------------------------------------------------------------ | ||
+ | |||
+ | # cd / | ||
+ | # git clone --depth 1 http:// | ||
+ | # cd x264 | ||
+ | ./configure --prefix="/ | ||
+ | make | ||
+ | make install | ||
+ | |||
+ | |||
+ | Install libx265: | ||
+ | ------------------------------------------------------------ | ||
+ | |||
+ | # cd / | ||
+ | hg clone https:// | ||
+ | cd ~/ | ||
+ | cmake -G "Unix Makefiles" | ||
+ | make | ||
+ | make install | ||
+ | |||
+ | |||
+ | Install libxvid: | ||
+ | ------------------------------------------------------------ | ||
+ | |||
+ | # cd / | ||
+ | hg clone https:// | ||
+ | cd ~/ | ||
+ | cmake -G "Unix Makefiles" | ||
+ | make | ||
+ | make install | ||
+ | |||
+ | |||
+ | Install libfdk_aac: | ||
+ | ------------------------------------------------------------ | ||
+ | |||
+ | # cd / | ||
+ | git clone --depth 1 https:// | ||
+ | cd fdk-aac | ||
+ | autoreconf -fiv | ||
+ | ./configure --prefix="/ | ||
+ | make | ||
+ | make install | ||
+ | |||
+ | |||
+ | Install libmp3lame: | ||
+ | ------------------------------------------------------------ | ||
+ | |||
+ | # cd / | ||
+ | curl -L -O http:// | ||
+ | tar xzvf lame-3.99.5.tar.gz | ||
+ | cd lame-3.99.5 | ||
+ | ./configure --prefix="/ | ||
+ | make | ||
+ | make install | ||
+ | |||
+ | |||
+ | Install libopus: | ||
+ | ------------------------------------------------------------ | ||
+ | |||
+ | # cd / | ||
+ | curl -O https:// | ||
+ | tar xzvf opus-1.1.5.tar.gz | ||
+ | cd opus-1.1.5 | ||
+ | ./configure --prefix="/ | ||
+ | make | ||
+ | make install | ||
+ | |||
+ | |||
+ | Install libogg: | ||
+ | ------------------------------------------------------------ | ||
+ | |||
+ | # cd / | ||
+ | curl -O http:// | ||
+ | tar xzvf libogg-1.3.2.tar.gz | ||
+ | cd libogg-1.3.2 | ||
+ | ./configure --prefix="/ | ||
+ | make | ||
+ | make install | ||
+ | |||
+ | |||
+ | Install libvorbis: | ||
+ | ------------------------------------------------------------ | ||
+ | |||
+ | # cd / | ||
+ | curl -O http:// | ||
+ | tar xzvf libvorbis-1.3.4.tar.gz | ||
+ | cd libvorbis-1.3.4 | ||
+ | ./configure --prefix="/ | ||
+ | make | ||
+ | make install | ||
+ | |||
+ | |||
+ | Install libvpx: | ||
+ | ------------------------------------------------------------ | ||
+ | |||
+ | # cd / | ||
+ | git clone --depth 1 https:// | ||
+ | cd libvpx | ||
+ | ./configure --prefix="/ | ||
+ | PATH="/ | ||
+ | make install | ||
+ | |||
+ | |||
+ | Install FFmpeg: | ||
+ | ------------------------------------------------------------ | ||
+ | |||
+ | # cd / | ||
+ | curl -O http:// | ||
+ | tar xjvf ffmpeg-snapshot.tar.bz2 | ||
+ | cd ffmpeg | ||
+ | PATH="/ | ||
+ | --prefix="/ | ||
+ | --pkg-config-flags=" | ||
+ | --extra-cflags=" | ||
+ | --extra-ldflags=" | ||
+ | --extra-libs=-lpthread \ | ||
+ | --bindir="/ | ||
+ | --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 | ||
+ | |||
+ | |||
+ | </ | ||
+ | |||
+ | * For Updateing: -> https:// | ||
+ | * https:// | ||
+ | * https:// | ||
+ | * https:// | ||
+ | * http:// | ||
</ | </ | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
---- | ---- | ||
<WRAP center box 100%> | <WRAP center box 100%> | ||
- | ===== Installation Mediainfo | + | ==== Installation Mediainfo ==== |
< | < | ||
- | yum install mediainfo | + | # yum install mediainfo |
</ | </ | ||
</ | </ | ||
Line 26: | Line 202: | ||
<WRAP center box 100%> | <WRAP center box 100%> | ||
- | ===== Installation NeroAacEnc | + | ==== Installation NeroAacEnc ==== |
< | < | ||
# cd / | # cd / | ||
Line 41: | Line 217: | ||
<WRAP center box 100%> | <WRAP center box 100%> | ||
- | ===== Installation MP4Box | + | ==== Installation MP4Box ==== |
< | < | ||
- | yum install -y gpac | + | # yum install -y gpac |
</ | </ | ||
</ | </ | ||
+ | ---- | ||
<WRAP center box 100%> | <WRAP center box 100%> | ||
- | ===== Installation FLVTool2 | + | ==== Installation FLVTool2 ==== |
< | < | ||
- | yum install -y ruby rubygems | + | # yum install -y ruby rubygems |
- | gem install flvtool2 | + | # gem install flvtool2 |
</ | </ | ||
</ | </ | ||
+ | ---- | ||
<WRAP center box 100%> | <WRAP center box 100%> | ||
- | ===== Installation Yamdi ===== | + | ==== Installation Yamdi ==== |
< | < | ||
- | yum install gcc-c++ make | + | # yum install gcc-c++ make |
- | cd / | + | # cd / |
- | wget " | + | # wget " |
- | 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/ |
</ | </ | ||
</ | </ | ||
+ | ---- | ||
<sxh bash> | <sxh bash> |