On Tue, Apr 14, 2015 at 03:41:49PM +0200, Alexander Martin Dethof wrote: > Hello everybody, > > I am trying to build the current version of ffmpeg. For this purpose I use the > description of the compilation guide: > http://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu. Further more I want to > enable libx265 in my ffmpeg configuration. So I installed x265 before by > this description: > https://bitbucket.org/multicoreware/x265/wiki/Home. > > <code> > sudo apt-get install mercurial cmake cmake-curses-gui build-essential yasm > hg clone https://bitbucket.org/multicoreware/x265 > cd x265/build/linux > ./make-Makefiles.bash > make > </code> >
Look for patterns on the other libs on that wiki page. All of them have --prefix="$HOME/ffmpeg_build" Do that for x265 (or find the equivalent) and use make install (no root needed, you have write perm in $HOME/ffmpeg_build). This will deploy a .pc file with all the other pc files available in $HOME/ffmpeg_build/lib/pkgconfig as well as deploying the libs in the parent directory of it. Everything else should then work as expected. -- Clément B.
pgpzSjCWKrVE3.pgp
Description: PGP signature
_______________________________________________ ffmpeg-user mailing list [email protected] http://ffmpeg.org/mailman/listinfo/ffmpeg-user
