LINUX.ORG.RU

FFMPEG-PHP не подключается к FFMPEG

 


0

1

Ubuntu 16 LTS, Nginx 1.13, Apache, Php 7.2 fpm, FFMPEG Скомпилил нужный мне конфиг FFMPEG с опцией --enable-shared специально для FFMPEG-PHP модуля (т.к. он требует) Теперь пытаюсь скомпилить собсно сам FFMPEG-PHP, все компилит и скипает с ошибкой:

Ошибка FFMPEG-PHP при компиляции:

root@VIDEOPNZ:~# cd ~/ffmpeg-php
root@VIDEOPNZ:~/ffmpeg-php# phpize
Configuring for:
PHP Api Version:         20170718
Zend Module Api No:      20170718
Zend Extension Api No:   320170718
root@VIDEOPNZ:~/ffmpeg-php# ./configure && make -j4
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for a sed that does not truncate output... /bin/sed
checking for cc... cc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether cc accepts -g... yes
checking for cc option to accept ISO C89... none needed
checking how to run the C preprocessor... cc -E
checking for icc... no
checking for suncc... no
checking whether cc understands -c and -o together... yes
checking for system library directory... lib
checking if compiler supports -R... no
checking if compiler supports -Wl,-rpath,... yes
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking target system type... x86_64-pc-linux-gnu
checking for PHP prefix... /usr
checking for PHP includes... -I/usr/include/php/20170718 -I/usr/include/php/20170718/main -I/usr/include/php/20170718/TSRM -I/usr/include/php/20170718/Zend -I/usr/include/php/20170718/ext -I/usr/include/php/20170718/ext/date/lib
checking for PHP extension directory... /usr/lib/php/20170718
checking for PHP installed headers prefix... /usr/include/php/20170718
checking if debug is enabled... no
checking if zts is enabled... no
checking for re2c... no
configure: WARNING: You will need re2c 0.13.4 or later if you want to regenerate PHP parsers.
checking for gawk... gawk
checking for ffmpeg support... yes, shared
checking whether to force gd support in ffmpeg-php... no
checking for ffmpeg headers...
configure: error: ffmpeg headers not found. Make sure ffmpeg is compiled as shared libraries using the --enable-shared option
configure: error: ffmpeg headers not found. Make sure ffmpeg is compiled as shared libraries using the --enable-shared option

То есть он утверждает что FFMPEG с опцией --enable-shared отсутствует, но как блин он отсутствует, если он есть и он работает. Может он не туда смотрит? Или я как то не так запускаю его компиляцию? Прошу помощи знающих, как ему скормить ffmpeg???

А вот скомпиленный FFMPEG, точнее его статус ответа и опция --enable-shared тут есть!

root@VIDEOPNZ:~# ffmpeg
ffmpeg version N-93527-g1125277 Copyright (c) 2000-2019 the FFmpeg developers
  built with gcc 5.4.0 (Ubuntu 5.4.0-6ubuntu1~16.04.11) 20160609
  configuration: --prefix=/home/odmin/ffmpeg_build --pkg-config-flags=--static --extra-cflags=-I/home/odmin/ffmpeg_build/include --extra-ldflags=-L/home/odmin/ffmpeg_build/lib --extra-libs='-lpthread -lm' --bindir=/home/odmin/bin --enable-pic --enable-gpl --enable-shared --enable-libass --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libx265 --enable-nonfree
  libavutil      56. 26.100 / 56. 26.100
  libavcodec     58. 48.100 / 58. 48.100
  libavformat    58. 26.101 / 58. 26.101
  libavdevice    58.  7.100 / 58.  7.100
  libavfilter     7. 48.100 /  7. 48.100
  libswscale      5.  4.100 /  5.  4.100
  libswresample   3.  4.100 /  3.  4.100
  libpostproc    55.  4.100 / 55.  4.100
Hyper fast Audio and Video encoder
usage: ffmpeg [options] [[infile options] -i infile]... {[outfile options] outfile}...

Use -h to get full help or, even better, run 'man ffmpeg'

configure: error: ffmpeg headers not found

не найдены заголовочные файлы ffmpeg

надо указать, видимо собрал куда-то в /usr/local ?

anonymous
()
Ответ на: комментарий от anonymous

Вот и я думаю нужно ему указать путь, только не знаю как указать ему путь?

Компилил снапшот с такими путями:

cd ~/ffmpeg_sources && \
wget -O ffmpeg-snapshot.tar.bz2 https://ffmpeg.org/releases/ffmpeg-snapshot.tar.bz2 && \
tar xjvf ffmpeg-snapshot.tar.bz2 && \
cd ffmpeg && \
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-pic \
  --enable-gpl \
  --enable-shared \
  --enable-libass \
  --enable-libfdk-aac \
  --enable-libfreetype \
  --enable-libmp3lame \
  --enable-libopus \
  --enable-libvorbis \
  --enable-libvpx \
  --enable-libx264 \
  --enable-libx265 \
  --enable-nonfree && \
PATH="$HOME/bin:$PATH" make -j4 && \
make install && \
hash -r
Shouldercannon
() автор топика

То есть он утверждает что FFMPEG с опцией --enable-shared отсутствует,

Нет. Он утверждает что хедеры FFMPEG отсутствуют.

error: ffmpeg headers not found.

Deleted
()
Ответ на: комментарий от Shouldercannon

Я мне могу нагуглить как ему указать хидер.

Сначала найди их у себя. А дальше:

./configure --help
Deleted
()
Ответ на: комментарий от Shouldercannon

Подскажи, пожалуйста, как их найти.

Для этого ты должен рассказать как собирал FFMPEG.

Далее подсказка: хедеры FFMPEG делятся на группы: avcodec, avdevice, avfilter, avformat, avresample, avutlis, postproc, swresample, swscale.

Deleted
()
Ответ на: комментарий от Deleted

Вот теперь я понял, что такое хедер

root@VIDEOPNZ:~/ffmpeg_build/include# ls -l
итого 196
drwxr-xr-x 2 root root  4096 апр  4 14:03 lame
drwxr-xr-x 2 root root  4096 апр  4 14:16 libavcodec
drwxr-xr-x 2 root root  4096 апр  4 14:16 libavdevice
drwxr-xr-x 2 root root  4096 апр  4 14:16 libavfilter
drwxr-xr-x 2 root root  4096 апр  4 14:16 libavformat
drwxr-xr-x 2 root root  4096 апр  4 14:16 libavutil
drwxr-xr-x 2 root root  4096 апр  4 14:16 libpostproc
drwxr-xr-x 2 root root  4096 апр  4 14:16 libswresample
drwxr-xr-x 2 root root  4096 апр  4 14:16 libswscale
drwxr-xr-x 2 root root  4096 апр  4 14:05 opus
drwxr-xr-x 2 root root  4096 апр  4 14:00 vpx
-rw-r--r-- 1 root root   172 апр  4 14:00 x264_config.h
-rw-r--r-- 1 root root 46889 апр  4 14:00 x264.h
-rw-r--r-- 1 root root  1426 апр  4 11:35 x265_config.h
-rw-r--r-- 1 root root 95770 апр  4 11:35 x265.h

Shouldercannon
() автор топика
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.