ffmpeg 5.1.x ./configure --prefix=/tmp/ffmpeg
Posted: Thu Dec 01, 2022 10:17 pm
Does anyone know why does the "--prefix" don't work anymore while compiling ffmpeg?
Here is what i did:
wget https://ffmpeg.org/releases/ffmpeg-5.1.2.tar.bz2
wget https://ffmpeg.org/releases/ffmpeg-5.1.2.tar.bz2.asc
curl https://ffmpeg.org/ffmpeg-devel.asc | gpg --import
gpg --verify ffmpeg-5.1.2.tar.bz2.asc ffmpeg-5.1.2.tar.bz2
tar -jxvf ffmpeg-5.1.2.tar.bz2
cd ffmpeg-5.1.2
./configure --prefix=/tmp/ffmpeg-5.1.2 --enable-static --disable-shared --enable-pic --enable-libfdk-aac
make -j$(nproc)
But the ffmpeg still compiled in the current dir, instead of /tmp/ffmpeg-5.1.2
Running Debian 11 amd64. Tried on 2 PC's.
Here is what i did:
wget https://ffmpeg.org/releases/ffmpeg-5.1.2.tar.bz2
wget https://ffmpeg.org/releases/ffmpeg-5.1.2.tar.bz2.asc
curl https://ffmpeg.org/ffmpeg-devel.asc | gpg --import
gpg --verify ffmpeg-5.1.2.tar.bz2.asc ffmpeg-5.1.2.tar.bz2
tar -jxvf ffmpeg-5.1.2.tar.bz2
cd ffmpeg-5.1.2
./configure --prefix=/tmp/ffmpeg-5.1.2 --enable-static --disable-shared --enable-pic --enable-libfdk-aac
make -j$(nproc)
But the ffmpeg still compiled in the current dir, instead of /tmp/ffmpeg-5.1.2
Running Debian 11 amd64. Tried on 2 PC's.