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/10/21 12:43] – michael | redhat:other-redhat:transcoding-tools-redhat [2017/10/21 14:22] (current) – michael | ||
---|---|---|---|
Line 16: | Line 16: | ||
---- | ---- | ||
- | <wrap em> | + | <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:// | ||
</ | </ | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
---- | ---- |