Results 1 to 3 of 3
Like Tree4Likes
  • 3 Post By subzero
  • 1 Post By arbind004

Thread: Ffmpeg expert plzz come

  1. #1
    Junior Member arbind004's Avatar
    Join Date
    Apr 2012
    Location
    Jharkhand, India
    Posts
    13
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Rep Power
    0

    Post Ffmpeg expert plzz come

    OPERATING SYSTEM : CentOS 6.2
    I am trying to install ffmpeg but getting erro.
    plzz give solve my problem.
    HTML Code:
    yum install ffmpeg ffmpeg-devel
    Error:
    Code:
    Error: Package: docbook-utils-0.6.14-24.el6.noarch (base)
               Requires: perl-SGMLSpm >= 1.03ii
     You could try using --skip-broken to work around the problem
    ** Found 8 pre-existing rpmdb problem(s), 'yum check' output follows:
    MySQL-server-5.1.63-0.cloud.x86_64 has missing requires of perl(DBI)
    bandmin-1.6.1-5.noarch has missing requires of perl(bandmin.conf)
    bandmin-1.6.1-5.noarch has missing requires of perl(bmversion.pl)
    bandmin-1.6.1-5.noarch has missing requires of perl(services.conf)
    exim-4.77-1.x86_64 has missing requires of perl(SafeFile)
    frontpage-2002-SR1.2.i386 has missing requires of libexpat.so.0
    libgcj-4.4.6-3.el6.x86_64 has missing requires of libasound.so.2()(64bit)
    libgcj-4.4.6-3.el6.x86_64 has missing requires of libasound.so.2(ALSA_0.9)(64bit)

  2. #2
    Super Moderator subzero's Avatar
    Join Date
    Mar 2006
    Location
    Your Screen.
    Posts
    3,973
    Thanks
    442
    Thanked 380 Times in 181 Posts
    Blog Entries
    7
    Rep Power
    0

    Default

    Note: The # indicates that the command should be executed as superuser or root.
    Preparation

    Remove any existing packages:
    # yum erase ffmpeg x264 x264-devel

    Get the dependencies:
    # yum install gcc git make nasm pkgconfig wget

    Make a source directory:
    mkdir ~/ffmpeg-source
    Installation
    Yasm

    Yasm is an assembler used by x264 and FFmpeg.
    cd ~/ffmpeg-source
    wget [Only registered and activated users can see links. Click Here To Register...]
    tar xzvf yasm-1.2.0.tar.gz
    cd yasm-1.2.0
    ./configure
    make
    # make install

    Note: If you do not require certain encoders you may skip the relevant section and then remove the appropriate ./configure option in FFmpeg. For example, if libtheora is not needed, then skip that section and then remove --enable-libtheora from the Install FFmpeg section.
    x264

    H.264 video encoder.
    cd ~/ffmpeg-source
    git clone git://git.videolan.org/x264
    cd x264
    ./configure --enable-static
    make
    # make install
    LAME

    MP3 audio encoder.
    cd ~/ffmpeg-source
    wget [Only registered and activated users can see links. Click Here To Register...]
    tar xzvf lame-3.99.5.tar.gz
    cd lame-3.99.5
    ./configure --disable-shared --enable-nasm
    make
    # make install
    libogg

    Required for libtheora and libvorbis.
    cd ~/ffmpeg-source
    wget [Only registered and activated users can see links. Click Here To Register...]
    tar Jxvf libogg-1.3.0.tar.xz
    cd libogg-1.3.0
    ./configure --disable-shared
    make
    # make install
    libtheora

    Theora video encoder.
    cd ~/ffmpeg-source
    wget [Only registered and activated users can see links. Click Here To Register...]
    tar xzvf libtheora-1.1.1.tar.gz
    cd libtheora-1.1.1
    ./configure --disable-shared
    make
    # make install
    libvorbis

    Vorbis audio encoder.
    cd ~/ffmpeg-source
    wget [Only registered and activated users can see links. Click Here To Register...]
    tar xzvf libvorbis-1.3.3.tar.gz
    cd libvorbis-1.3.3
    ./configure --disable-shared
    make
    # make install
    vo-aacenc

    VisualOn AAC audio encoder.
    cd ~/ffmpeg-source
    wget [Only registered and activated users can see links. Click Here To Register...]
    tar xzvf vo-aacenc-0.1.2.tar.gz
    cd vo-aacenc-0.1.2
    ./configure --disable-shared
    make
    # make install
    libvpx

    VP8 video encoder.
    cd ~/ffmpeg-source
    git clone [Only registered and activated users can see links. Click Here To Register...]
    cd libvpx
    ./configure
    make
    # make install
    FFmpeg
    cd ~/ffmpeg-source
    git clone git://source.ffmpeg.org/ffmpeg
    cd ffmpeg
    ./configure --enable-gpl --enable-libmp3lame --enable-libtheora --enable-libvo-aacenc --enable-libvorbis --enable-libvpx --enable-libx264 --enable-version3
    make
    # make install

    Compilation is now complete and ffmpeg should now be ready to use. The rest of this guide shows how to update or remove FFmpeg.

    Note: Keep the ffmpeg-source directory and all contents if you intend to update or uninstall as shown below.
    Updating x264, libvpx, and FFmpeg

    First uninstall x264, libvpx, and FFmpeg:
    cd ~/ffmpeg-source/x264
    # make uninstall
    cd ~/ffmpeg-source/ffmpeg
    # make uninstall
    cd ~/ffmpeg-source/libvpx
    # make uninstall
    Update x264
    cd ~/ffmpeg-source/x264
    make distclean
    git pull

    Then run ./configure, make, and make install as shown in the Install x264 section.
    Update libvpx
    cd ~/ffmpeg-source/libvpx
    make clean
    git pull

    Then run ./configure, make, and make install as shown in the Install libvpx section.
    Update FFmpeg
    cd ~/ffmpeg-source/ffmpeg
    make distclean
    git pull

    Then run ./configure, make, and make install as shown in the Install FFmpeg section.
    Reverting changes made by this guide
    cd ~/ffmpeg-source/yasm-1.2.0
    # make uninstall
    cd ../x264
    # make uninstall
    cd ../lame-3.99.5
    # make uninstall
    cd ../libogg-1.3.0
    # make uninstall
    cd ../libtheora-1.1.1
    # make uninstall
    cd ../libvorbis-1.3.3
    # make uninstall
    cd ../libvpx
    # make uninstall
    cd ../vo-aacenc-0.1.2
    # make uninstall
    cd ../ffmpeg
    # make uninstall
    rm -rf ~/ffmpeg-source
    # yum erase gcc git make nasm pkgconfig wget

    Here: [Only registered and activated users can see links. Click Here To Register...]
    metulj, cpg12 and arbind004 like this.
    Visit: [Only registered and activated users can see links. Click Here To Register...]
    Visit: [Only registered and activated users can see links. Click Here To Register...]
    _______
    SCRIPTS FOR SALE BY SUBZERO
    Chat4u Script : coding-talk.com/f28/chat4u-mobi-script-only-150-a-17677/ - > Best Script for your site no other can be hacked by sql or uploaders.
    FileShare Script : coding-talk.com/f28/file-wap-share-6596/ -> Uploader you will never regret buying yeah it mite be old now but it still seems to own others...
    _______
    Info & Tips
    php.net
    w3schools.com

  3. #3
    Junior Member arbind004's Avatar
    Join Date
    Apr 2012
    Location
    Jharkhand, India
    Posts
    13
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Rep Power
    0

    Default

    thankx subzero i have change my CentOS 6.2 TO CentOS 5.8 and ffmpeg install sucessfully.
    thankx for help
    subzero likes this.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 7
    Last Post: 14-07-12, 02:45
  2. expert plz hlp how to uninstall ffmpeg
    By MuzicStar in forum Server Management
    Replies: 4
    Last Post: 26-06-12, 04:45
  3. Can any expert can do this?
    By funtowap in forum REQUEST FORUM
    Replies: 2
    Last Post: 16-02-12, 02:36
  4. [lava session] urgent help plzz !!
    By 12345xmen in forum Site / Script testing and error fixing
    Replies: 0
    Last Post: 31-12-10, 15:00
  5. Help Wapmasterz Plzz !!
    By Rekon in forum Trash forum
    Replies: 1
    Last Post: 08-09-10, 16:00

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

SEO by vBSEO

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19