Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
redhat:other-redhat:transcoding-tools-redhat [2017/10/21 13:45] – michael | redhat: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:// | curl -O http:// | ||
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=" | + | ./configure --prefix=" |
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 clone --depth 1 http:// | ||
# cd x264 | # cd x264 | ||
- | ./configure --prefix=" | + | ./configure --prefix=" |
make | make | ||
make install | make install | ||
Line 52: | Line 52: | ||
------------------------------------------------------------ | ------------------------------------------------------------ | ||
- | # cd /opt/ffmpeg/sources | + | # cd /usr/src/ffmpeg_sources |
hg clone https:// | hg clone https:// | ||
cd ~/ | cd ~/ | ||
- | cmake -G "Unix Makefiles" | + | cmake -G "Unix Makefiles" |
+ | make | ||
+ | make install | ||
+ | |||
+ | |||
+ | Install libxvid: | ||
+ | ------------------------------------------------------------ | ||
+ | |||
+ | # cd / | ||
+ | hg clone https:// | ||
+ | cd ~/ | ||
+ | cmake -G "Unix Makefiles" | ||
make | make | ||
make install | make install | ||
Line 63: | Line 74: | ||
------------------------------------------------------------ | ------------------------------------------------------------ | ||
- | # cd /opt/ffmpeg/sources | + | # cd /usr/src/ffmpeg_sources |
git clone --depth 1 https:// | git clone --depth 1 https:// | ||
cd fdk-aac | cd fdk-aac | ||
autoreconf -fiv | autoreconf -fiv | ||
- | ./configure --prefix=" | + | ./configure --prefix=" |
make | make | ||
make install | make install | ||
Line 75: | Line 86: | ||
------------------------------------------------------------ | ------------------------------------------------------------ | ||
- | # cd /opt/ffmpeg/sources | + | # cd /usr/src/ffmpeg_sources |
curl -L -O http:// | curl -L -O http:// | ||
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=" | + | ./configure --prefix=" |
make | make | ||
make install | make install | ||
Line 87: | Line 98: | ||
------------------------------------------------------------ | ------------------------------------------------------------ | ||
- | # cd /opt/ffmpeg/sources | + | # cd /usr/src/ffmpeg_sources |
curl -O https:// | curl -O https:// | ||
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=" | + | ./configure --prefix=" |
make | make | ||
make install | make install | ||
Line 99: | Line 110: | ||
------------------------------------------------------------ | ------------------------------------------------------------ | ||
- | # cd /opt/ffmpeg/sources | + | # cd /usr/src/ffmpeg_sources |
curl -O http:// | curl -O http:// | ||
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=" | + | ./configure --prefix=" |
make | make | ||
make install | make install | ||
Line 111: | Line 122: | ||
------------------------------------------------------------ | ------------------------------------------------------------ | ||
- | # cd /opt/ffmpeg/sources | + | # cd /usr/src/ffmpeg_sources |
curl -O http:// | curl -O http:// | ||
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=" | + | ./configure --prefix=" |
make | make | ||
make install | make install | ||
Line 123: | Line 134: | ||
------------------------------------------------------------ | ------------------------------------------------------------ | ||
- | # cd /opt/ffmpeg/sources | + | # cd /usr/src/ffmpeg_sources |
git clone --depth 1 https:// | git clone --depth 1 https:// | ||
cd libvpx | cd libvpx | ||
- | ./configure --prefix=" | + | ./configure --prefix=" |
- | PATH="$HOME/ | + | PATH="/usr/local/ |
make install | make install | ||
Line 134: | Line 145: | ||
------------------------------------------------------------ | ------------------------------------------------------------ | ||
- | # cd /opt/ffmpeg/sources | + | # cd /usr/src/ffmpeg_sources |
curl -O http:// | curl -O http:// | ||
tar xjvf ffmpeg-snapshot.tar.bz2 | tar xjvf ffmpeg-snapshot.tar.bz2 | ||
cd ffmpeg | cd ffmpeg | ||
- | PATH="$HOME/ | + | PATH="/usr/local/ |
- | --prefix=" | + | --prefix=" |
--pkg-config-flags=" | --pkg-config-flags=" | ||
- | --extra-cflags=" | + | --extra-cflags=" |
- | --extra-ldflags=" | + | --extra-ldflags=" |
--extra-libs=-lpthread \ | --extra-libs=-lpthread \ | ||
- | --bindir=" | + | --bindir=" |
--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:// | * For Updateing: -> https:// | ||
+ | * https:// | ||
+ | * https:// | ||
* https:// | * https:// | ||
* http:// | * http:// |