Results 1 to 7 of 7

Thread: ffmpeg installation: opus not found

  1. #1
    Join Date
    Sep 2009
    Beans
    29
    Distro
    Ubuntu 12.04 Precise Pangolin

    ffmpeg installation: opus not found

    I am trying to install ffmpeg via:
    Code:
    ./configure --prefix="$HOME/ffmpeg_build" \
      --extra-cflags="-I$HOME/ffmpeg_build/include" --extra-ldflags="-L$HOME/ffmpeg_build/lib" \
      --bindir="$HOME/bin" --extra-libs="-ldl" --enable-gpl --enable-libass --enable-libfdk-aac \
      --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvorbis --enable-libvpx \
      --enable-libx264 --enable-nonfree --enable-x11grab
    I am getting error:
    Code:
    ERROR: opus not found
    I have aslo installed libopus using http://ffmpeg.org/trac/ffmpeg/wiki/U...mpilationGuide
    and successfully installed it using :
    Code:
    cd ~/ffmpeg_sources
    wget http://downloads.xiph.org/releases/opus/opus-1.0.3.tar.gz
    tar xzvf opus-1.0.3.tar.gz
    cd opus-1.0.3
    ./configure --prefix="$HOME/ffmpeg_build" --disable-shared
    make
    make install
    make distclean
    all the files of opus are successfully installed such as
    libopus.a
    libopus.la
    opus.pc
    and other header files

    pl tell how to resolve this??
    I am using ubuntu 12.04 desktop

  2. #2
    Join Date
    Sep 2009
    Beans
    29
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: ffmpeg installation: opus not found

    the problem has been solved. I contacted the IRC channel #ffmpeg.
    had to reset the PKG_CONFIG_PATH environment variable to opus.pc directory

  3. #3
    Join Date
    Sep 2006
    Beans
    3,713

    Re: ffmpeg installation: opus not found

    I went through the guide on 12.04 and did not experience the same issue and the following command from the guide should have done what you needed:

    Code:
    PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig"

  4. #4
    Join Date
    Sep 2009
    Beans
    29
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: ffmpeg installation: opus not found

    the command needed to be modified a bit to work.
    Earlier i used it,but couldn't work(error: opus not found) but the i used:
    Code:
    PKG_CONFIG_PATH="/home/ffmpeg_build/lib/pkgconfig"
    and everything worked.
    I don't know,both are same although

  5. #5
    Join Date
    Sep 2006
    Beans
    3,713

    Re: ffmpeg installation: opus not found

    "$HOME" and "/home" are different:

    Code:
    $ echo $HOME
    /home/prkhr4u
    $HOME is an environment variable and refers to the home directory of the user, while /home is just the /home directory.

  6. #6
    Join Date
    Sep 2009
    Beans
    29
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: ffmpeg installation: opus not found

    Thanks for the clarification

  7. #7
    Join Date
    Aug 2014
    Beans
    1

    Re: ffmpeg installation: opus not found

    i am also getting the same error ."opus not found". i have installed upto libvpx. should i have to reinstall libopus and libvpx again by defining path as"
    PKG_CONFIG_PATH="/home/ffmpeg_build/lib/pkgconfig" or can i directly resume with this command.
    pls rply soon ....@prkhr4u

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
  •