Discussion:
[FFmpeg-user] Error building ffmpeg with x265 support
David Turner
2018-02-06 05:13:55 UTC
Permalink
I worked my through the tutorial on compiling ffmpeg with h.265 support found at https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu. The last thing it instructed me to do is
PATH="$HOME/bin:$PATH" PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig" ./configure   --prefix="$HOME/ffmpeg_build"   --pkg-config-flags="--static"   --extra-cflags="-I$HOME/ffmpeg_build/include"   --extra-ldflags="-L$HOME/ffmpeg_build/lib"   --extra-libs="-lpthread -lm"   --bindir="$HOME/bin"   --enable-gpl   --enable-libass   --enable-libfdk-aac   --enable-libfreetype   --enable-libmp3lame   --enable-libopus   --enable-libtheora   --enable-libvorbis   --enable-libvpx   --enable-libx264   --enable-libx265   --enable-nonfree

to which I got the following error:
ERROR: x265 not found using pkg-config

If you think configure made a mistake, make sure you are using the latest
version from Git.  If the latest version fails, report the problem to the
ffmpeg-***@ffmpeg.org mailing list or IRC #ffmpeg on irc.freenode.net.
Include the log file "ffbuild/config.log" produced by configure as this will help
solve the problem.

Per the request above I am including the config.log file for your kindly review.
Any thoughts?
-David Turner"Linux user who knows just enough to be dangerous"
Frank Haefemeier
2018-02-06 23:30:16 UTC
Permalink
Post by David Turner
I worked my through the tutorial on compiling ffmpeg with h.265 support found at https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu. The last thing it instructed me to do is
PATH="$HOME/bin:$PATH" PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig" ./configure --prefix="$HOME/ffmpeg_build" --pkg-config-flags="--static" --extra-cflags="-I$HOME/ffmpeg_build/include" --extra-ldflags="-L$HOME/ffmpeg_build/lib" --extra-libs="-lpthread -lm" --bindir="$HOME/bin" --enable-gpl --enable-libass --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libx265 --enable-nonfree
ERROR: x265 not found using pkg-config
You must install the developer package (header files) of x265 library.
E.g. on fedora you must install 'dnf install x265-devel'. It will
install the header, pkg-config files and (if missing) the library
itself. If you have another package manager the concept is equal.

Bye
Frank
_______________________________________________
ffmpeg-user mailing list
ffmpeg-***@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-***@ffmpeg.org with subje
Carl Eugen Hoyos
2018-02-06 23:33:41 UTC
Permalink
Post by David Turner
I worked my through the tutorial on compiling ffmpeg with h.265 support found at https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu. The last thing it instructed me to do is
PATH="$HOME/bin:$PATH" PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig" ./configure --prefix="$HOME/ffmpeg_build" --pkg-config-flags="--static" --extra-cflags="-I$HOME/ffmpeg_build/include" --extra-ldflags="-L$HOME/ffmpeg_build/lib" --extra-libs="-lpthread -lm" --bindir="$HOME/bin" --enable-gpl --enable-libass --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libx265 --enable-nonfree
ERROR: x265 not found using pkg-config
If you think configure made a mistake, make sure you are using the latest
version from Git. If the latest version fails, report the problem to the
Include the log file "ffbuild/config.log" produced by configure as this will help
solve the problem.
Per the request above I am including the config.log file for your kindly review.
/usr/bin/ld: cannot find -lnuma
I don't know libnuma, feel free to verify that it is part of x265's
pkgconfig file
and that it was installed when you installed x265.

Carl Eugen
_______________________________________________
ffmpeg-user mailing list
ffmpeg-***@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-***@ffmpeg.org with subject "unsubscribe
Lou Logan
2018-02-07 00:56:34 UTC
Permalink
Post by David Turner
I worked my through the tutorial on compiling ffmpeg with h.265 support
found at https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu. The last
thing it instructed me to do is
PATH="$HOME/bin:$PATH" PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/
pkgconfig" ./configure   --prefix="$HOME/ffmpeg_build"   --pkg-config-
flags="--static"   --extra-cflags="-I$HOME/ffmpeg_build/include"   --
extra-ldflags="-L$HOME/ffmpeg_build/lib"   --extra-libs="-lpthread -
lm"   --bindir="$HOME/bin"   --enable-gpl   --enable-libass   --enable-
libfdk-aac   --enable-libfreetype   --enable-libmp3lame   --enable-
libopus   --enable-libtheora   --enable-libvorbis   --enable-libvpx   --
enable-libx264   --enable-libx265   --enable-nonfree
ERROR: x265 not found using pkg-config
Which Ubuntu version? Did you compile x265 or install the libx265-dev package? (The guide offers either option.)
_______________________________________________
ffmpeg-user mailing list
ffmpeg-***@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-***@ffmpeg.org with subje

Loading...