Results 1 to 3 of 3

Thread: How to enable library in ffmpeg without build ffmpeg from source?

  1. #1
    Join Date
    Oct 2019
    Beans
    6

    How to enable library in ffmpeg without build ffmpeg from source?

    Hi, I installed ffmpeg from ubuntu repository and built libaom. So, how to enable libaom in ffmpeg without reinstall ffmpeg from source (https://trac.ffmpeg.org/wiki/Compila.../Ubuntu#FFmpeg)?
    the ffmpeg cmpilation guide screenshot
    Screenshot_2021-07-05_10-51-11.jpg
    Thanks.

  2. #2
    Join Date
    Oct 2005
    Location
    Lab, Slovakia
    Beans
    10,791

    Re: How to enable library in ffmpeg without build ffmpeg from source?

    I think you are out of luck and need to compile it. That is time consuming but not impossible: https://www.aeronetworks.ca/2015/11/...ource.html?m=1

  3. #3
    Join Date
    Nov 2008
    Location
    Boston MetroWest
    Beans
    16,326

    Re: How to enable library in ffmpeg without build ffmpeg from source?

    I agree with Herman. Just having the library isn't enough. You have to compile ffmpeg to use it.

    You should give compilation a try. Run the command
    Code:
    sudo apt-get build-dep ffmpeg
    to install the libraries and helper code that was used in the official build. Then try running
    Code:
    ./configure --with-aom
    in the directory where you expanded the source code tarball. I don't guarantee this will work, but you should give it a try.
    Last edited by SeijiSensei; July 5th, 2021 at 08:34 PM.
    If you ask for help, do not abandon your request. Please have the courtesy to check for responses and thank the people who helped you.

    Blog · Linode System Administration Guides · Android Apps for Ubuntu Users

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
  •