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 15:35] – 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 | + | ==== Installation |
< | < | ||
- | 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:// | ||
</ | </ | ||
- | ---- | ||
- | ===== Compile FFmpeg on Redhat / CentOS 7 ===== | ||
- | This guide is based on a minimal installation of the latest CentOS release, and will provide a local, system installation of FFmpeg with support for several external encoding libraries. These instructions should also work for recent Red Hat Enterprise Linux (RHEL) and Fedora. This is a non-invasive guide and undoing all steps is simple and is shown at the end of this page. | ||
+ | |||
+ | |||
+ | |||
+ | ---- | ||
<WRAP center box 100%> | <WRAP center box 100%> | ||
- | ==== Vorbereitungen zur Installation ==== | + | ==== Installation |
+ | < | ||
+ | # yum install mediainfo | ||
+ | </ | ||
+ | </ | ||
- | | + | ---- |
- | # yum -y install http://dl.fedoraproject.org/pub/ | + | |
- | # yum-config-manager --add-repo | + | <WRAP center box 100%> |
- | # yum update | + | ==== Installation NeroAacEnc ==== |
+ | < | ||
+ | # cd /usr/local/src | ||
+ | |||
+ | # wget http://techdata.mirror.gtcomm.net/sysadmin/ | ||
+ | # unzip NeroDigitalAudio.zip | ||
+ | # cd nero/linux | ||
- | # yum install | + | # sudo install -D -m755 neroAacEnc / |
</ | </ | ||
- | - '' | + | </WRAP> |
+ | ---- | ||
+ | |||
+ | <WRAP center box 100%> | ||
+ | ==== Installation MP4Box ==== | ||
+ | < | ||
+ | # yum install -y gpac | ||
+ | </ | ||
</ | </ | ||
+ | ---- | ||
+ | <WRAP center box 100%> | ||
+ | ==== Installation FLVTool2 ==== | ||
+ | < | ||
+ | # yum install -y ruby rubygems | ||
+ | # gem install flvtool2 | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | <WRAP center box 100%> | ||
+ | ==== Installation Yamdi ==== | ||
+ | < | ||
+ | # yum install gcc-c++ make | ||
+ | |||
+ | # cd / | ||
+ | # wget " | ||
+ | # tar zxvf yamdi-1.9.tar.gz | ||
+ | # cd yamdi-1.9 | ||
+ | # gcc yamdi.c -o yamdi -O2 -Wall | ||
+ | # cp yamdi /usr/bin/ | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | <sxh bash> | ||
+ | **************************************************** | ||
+ | PHP CLIfound (/ | ||
+ | MEncoderfound (/ | ||
+ | MPlayerfound (/ | ||
+ | FFMpegfound (/ | ||
+ | FLVTool2found (/ | ||
+ | Mediainfofound (/ | ||
+ | MP4Boxfound (/ | ||
+ | NeroAacEncfound (/ | ||
+ | </ | ||