The forum is here for legacy reasons. No new posts will be created. User registration is disabled! If you have any questions, please email us or check https://www.adultscriptpro.com for more details!
You are not logged in.
Pages: 1
when running the following:
./configure --prefix=/usr/local --enable-shared --enable-gpl --enable-version3 --enable-nonfree --enable-postproc \
--enable-libfaac --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb \
--enable-libvpx --enable-libx264 --enable-libxvid
and getting the error-code that libvpx is outdated, make sure that you install the following first ...
cd ~/ffmpeg-source
git clone http://git.chromium.org/webm/libvpx.git
cd libvpx
./configure
make
# make install
fount it out ...
had to install yasm before ...
cd ~/ffmpeg-source
wget http://www.tortall.net/projects/yasm/re … 2.0.tar.gz
tar xzvf yasm-1.2.0.tar.gz
cd yasm-1.2.0
./configure
make
# make install
thx, that helped!!
./configure --prefix=/usr/local --enable-shared --enable-pic
Found yasm 1.1.0.2352
Minimum version is yasm-1.2.0
If you really want to compile without asm, configure with --disable-asm
should i use "--disable-asm" when compiling?
i am following the installation guide, but then one problem occurs ...
when i enter ...
./configure --prefix=/usr/local --enable-shared --enable-pic
i am getting error msg:
No working C compiler found.
what is the problem here, how to solve it?
best,
mark
Pages: 1