19 Jun 2013 | Автор: dd |
В процессе разборок с ffmpeg всплыла еще одна интересная тема. После установки вроде все оттестил, и передал разработчикам сайта, но у них почему то полезли ошибки, следующего характера.
# ffmpeg
ffmpeg: error while loading shared libraries: libavdevice.so.54: cannot open shared object file: No such file or directory
Стало понятно что ffmpeg не видит библиотеку имеющуюся в системе
# find / -name ‘libavdevice.so.54′
/usr/local/lib/libavdevice.so.54
что можно проверить более полным вариантом, где понимаем что не видит он не одну библиотеку, а большую часть:
# ldd `which ffmpeg`
linux-vdso.so.1 => (0x00007fff62fac000)
libavdevice.so.54 => not found
libavfilter.so.3 => not found
libavformat.so.54 => not found
libavcodec.so.54 => not found
libpostproc.so.52 => not found
libswresample.so.0 => not found
libswscale.so.2 => not found
libavutil.so.52 => not found
libpthread.so.0 => /lib64/libpthread.so.0 (0x00007fe0de13d000)
libm.so.6 => /lib64/libm.so.6 (0x00007fe0ddeb9000)
libc.so.6 => /lib64/libc.so.6 (0x00007fe0ddb25000)
/lib64/ld-linux-x86-64.so.2 (0x00007fe0de366000)
Для того чтобы образумить вбесившийся декодер прописываем в пути до библиотек в конфиг /etc/ld.so.conf, содержащий по дефолту только первую строку, так чтобы это выглядело как:
###### /etc/ld.so.conf #####
include ld.so.conf.d/*.conf
/usr/local/lib
######################
После чего пересоздаем линки для динамических библиотек
# ldconfig
И снова проверяем что нам ответит на этот раз ffmpeg
# ffmpeg
ffmpeg version 1.2 Copyright (c) 2000-2013 the FFmpeg developers
built on Jun 19 2013 14:16:11 with gcc 4.4.7 (GCC) 20120313 (Red Hat 4.4.7-3)
configuration: XXXXXXX
libavutil 52. 18.100 / 52. 18.100
libavcodec 54. 92.100 / 54. 92.100
libavformat 54. 63.104 / 54. 63.104
libavdevice 54. 3.103 / 54. 3.103
libavfilter 3. 42.103 / 3. 42.103
libswscale 2. 2.100 / 2. 2.100
libswresample 0. 17.102 / 0. 17.102
libpostproc 52. 2.100 / 52. 2.100
Hyper fast Audio and Video encoder
Rating: 7.8/10 (4 votes cast)
ffmpeg не видит библиотеки, 7.8 out of 10 based on 4 ratings
Теги: centos, ffmpeg, настройка системы
Содержание
- Одминский блог
- ffmpeg не видит библиотеки
- ffmpeg: error while loading shared libraries: libavdevice.so.59: cannot open shared object file: No such file or directory
- Error With Shared Libraries: FFMPEG
- ffmpeg: error while loading shared libraries: «libvmaf.so»: cannot open shared object file: No such file or directory #537
- Comments
Одминский блог
Блог о технологиях, технократии и методиках борьбы с граблями
ffmpeg не видит библиотеки
В процессе разборок с ffmpeg всплыла еще одна интересная тема. После установки вроде все оттестил, и передал разработчикам сайта, но у них почему то полезли ошибки, следующего характера.
# ffmpeg
ffmpeg: error while loading shared libraries: libavdevice.so.54: cannot open shared object file: No such file or directory
Стало понятно что ffmpeg не видит библиотеку имеющуюся в системе
# find / -name ‘libavdevice.so.54′
/usr/local/lib/libavdevice.so.54
что можно проверить более полным вариантом, где понимаем что не видит он не одну библиотеку, а большую часть:
# ldd `which ffmpeg`
linux-vdso.so.1 => (0x00007fff62fac000)
libavdevice.so.54 => not found
libavfilter.so.3 => not found
libavformat.so.54 => not found
libavcodec.so.54 => not found
libpostproc.so.52 => not found
libswresample.so.0 => not found
libswscale.so.2 => not found
libavutil.so.52 => not found
libpthread.so.0 => /lib64/libpthread.so.0 (0x00007fe0de13d000)
libm.so.6 => /lib64/libm.so.6 (0x00007fe0ddeb9000)
libc.so.6 => /lib64/libc.so.6 (0x00007fe0ddb25000)
/lib64/ld-linux-x86-64.so.2 (0x00007fe0de366000)
Для того чтобы образумить вбесившийся декодер прописываем в пути до библиотек в конфиг /etc/ld.so.conf, содержащий по дефолту только первую строку, так чтобы это выглядело как:
###### /etc/ld.so.conf #####
include ld.so.conf.d/*.conf
/usr/local/lib
######################
После чего пересоздаем линки для динамических библиотек
# ldconfig
И снова проверяем что нам ответит на этот раз ffmpeg
# ffmpeg
ffmpeg version 1.2 Copyright (c) 2000-2013 the FFmpeg developers
built on Jun 19 2013 14:16:11 with gcc 4.4.7 (GCC) 20120313 (Red Hat 4.4.7-3)
configuration: XXXXXXX
libavutil 52. 18.100 / 52. 18.100
libavcodec 54. 92.100 / 54. 92.100
libavformat 54. 63.104 / 54. 63.104
libavdevice 54. 3.103 / 54. 3.103
libavfilter 3. 42.103 / 3. 42.103
libswscale 2. 2.100 / 2. 2.100
libswresample 0. 17.102 / 0. 17.102
libpostproc 52. 2.100 / 52. 2.100
Hyper fast Audio and Video encoder
Источник
tl;dr: read the compile guide, and set a PREFIX and / or LD_LIBRARY_PATH
I did something I don’t normally do and compiled ffmpeg today, since the ffmpeg-user mailing list requires/strongly prefers/only supports current git head. I was doing this as I had some broken AVI files and wondered if they were salvageable:
Since it’s been a while since I’ve last compiled ffmpeg, I figured I’d grab a static build from John Van Sickle, but that was slightly out of date.
I then grabbed the ffmpeg sources, configure ‘d what I thought was sensible, but got: error while loading shared libraries: libavdevice.so.59: cannot open shared object file: No such file or directory . My system libavdevice library was version 58. Hmm. I thought I had compiled statically, but:
Hmm. Dynamically linked?
I must confess that I had gotten used to running the odd compiled binary ‘out of the box’* after a make without further interaction; taking easy compilation for granted.
Building dynamic is easier in the long run; but I didn’t want to clobber the system, package-managed binaries or libraries. Fortunately that’s what the PREFIX configure option makes possible, in particular: “ PREFIX/lib: contains the generated libraries (e.g. libavutil, libavcodec, libavformat etc. in the case of FFmpeg) “.
* It is still possible to run out of the box by telling ffmpeg where to find the libraries, by prefixing the command with LD_LIBRARY_PATH=/path/to/lib
Источник
On my fairly old laptop running 16.04, whenever I try to use ffmpeg I get the following error:
ffmpeg used to work fine and broke at some point. I can’t be sure exactly when, but it might well have been when I upgraded from 14.04 to 16.04.
Running ldd confirms that this library (the CUDA runtime library) is missing, but everything else is fine:
I am fairly sure that the file (libcudart5.5) does not exist anywhere on my system (I have tried `find’ etc), or indeed any other version of libcudart. The closest thing in the repo to what I need is libcudart7.5, a later version. But this comes along with an nvidia driver upgrade (nvidia-367) as a dependency which I have found several times now tanks the whole system (due to the graphics card being a bit out of date I think).
So basically I’m confused as to why ffmpeg is trying to link to libcudart5.5 in the first place. Surely it should be possible to run ffmpeg without needing GPU support? In fact I know it is because on another computer I use running 16.04, ldd shows no dependency on any version of libcudart and ffmpeg works just fine. The version of the ffmpeg package is the same in both cases:
So why is it looking for it on my laptop? I have tried purging ffmpeg and reinstalling it several times with no luck. One thing that seems relevant was that I found a residual-config entry for a package called libcudart5.5 installed on my system. I don’t really know what this means, but after removing it and reinstalling ffmpeg, it didn’t make a difference. It might also be relevant that at one stage (under 14.04) I had the full CUDA sdk installed, but then completely removed it and don’t want to reinstall it.
I’d really appreciate any help because I’d really like to use ffmpeg on my laptop for video conversion and this has been bugging me for a while now.
Источник
Hi there. I am trying to use vmaf in ffmpeg. I have installed vmaf and ffmpeg latest versions from github pages.
When I try to run ffmpeg with libvmaf, ffmpeg cannot find libvmaf.so file, so probably something wrong on vmaf installation. Ffmpeg display the following error message:
ffmpeg -i «sample1.mkv» -lavfi libvmaf -f null —
ffmpeg: error while loading shared libraries: «libvmaf.so»: cannot open shared object file: No such file or directory
If you look at the output of the vmaf installation vmaf installed libvmaf.so to «/usr/local/lib/x86_64-linux-gnu» directory and ffmpeg trying to find file in different directory and display error message «No such file or directory».
Here is the installation output:
In the directory of vmaf I enter the following commands.
In the directory of ffmpeg I enter the following commands.
Note: The operating system I use is Linux Mint 19.3 Tricia.
/vmaf/vmaf-master$ make
cd third_party/libsvm && make lib
make[1]: Entering directory ‘/home/emre/vmaf/vmaf-master/third_party/libsvm’
if [ «Linux» = «Darwin» ]; then
SHARED_LIB_FLAG=»-dynamiclib -Wl,-install_name,libsvm.so.2″;
else
SHARED_LIB_FLAG=»-shared -Wl,-soname,libsvm.so.2″;
fi;
g++ $ svm.o -o libsvm.so.2
make[1]: Leaving directory ‘/home/emre/vmaf/vmaf-master/third_party/libsvm’
mkdir -p libvmaf/build && cd libvmaf/build &&
meson .. —buildtype release &&
ninja -vC .
Directory already configured.
Just run your build command (e.g. ninja) and Meson will regenerate as necessary.
If ninja fails, run «ninja reconfigure» or «meson —reconfigure»
to force Meson to regenerate.
If build failures persist, run «meson setup —wipe» to rebuild from scratch
using the same options as passed when configuring the build.
To change option values, run «meson configure» instead.
ninja: Entering directory `.’
[1/1] /home/emre/.local/bin/meson —internal vcstagger ../include/vcs_version.h.in include/vcs_version.h 1.3.16 /home/emre/vmaf/vmaf-master/libvmaf/include @VCS_TAG@ ‘(.)’ /usr/bin/git —git-dir /home/emre/vmaf/vmaf-master/libvmaf/../.git describe —tags —long —match ‘?..*’ —always
fatal: not a git repository: ‘/home/emre/vmaf/vmaf-master/libvmaf/../.git’
emre@emre-ABRA-A5-V12-1:
/vmaf/vmaf-master$ sudo make install
[sudo] password for emre:
mkdir -p libvmaf/build && cd libvmaf/build &&
meson .. —buildtype release &&
ninja -vC . install
Directory already configured, exiting Meson. Just run your build command
(e.g. ninja) and Meson will regenerate as necessary. If ninja fails, run ninja
reconfigure to force Meson to regenerate.
If build failures persist, manually wipe your build directory to clear any
stored system data.
To change option values, run meson configure instead.
ninja: Entering directory `.’
[1/2] /home/emre/.local/bin/meson —internal vcstagger ../include/vcs_version.h.in include/vcs_version.h 1.3.16 /home/emre/vmaf/vmaf-master/libvmaf/include @VCS_TAG@ ‘(.)’ /usr/bin/git —git-dir /home/emre/vmaf/vmaf-master/libvmaf/../.git describe —tags —long —match ‘?..*’ —always
fatal: not a git repository: ‘/home/emre/vmaf/vmaf-master/libvmaf/../.git’
[1/2] /home/emre/.local/bin/meson install —no-rebuild
Installing subdir /home/emre/vmaf/vmaf-master/libvmaf/../model to /usr/local/share/model
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_v0.6.1.pkl to /usr/local/share/model
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_v0.6.1.pkl.model to /usr/local/share/model
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_v0.6.1.pkl.model to /usr/local/share/model
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_v0.6.1.pkl to /usr/local/share/model
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/other_models/nflxtrain_norm_type_none.pkl.model to /usr/local/share/model/other_models
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/other_models/nflxtrain_libsvmnusvr_currentbest.pkl.model to /usr/local/share/model/other_models
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/other_models/nflx_v1.pkl.model to /usr/local/share/model/other_models
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/other_models/nflxtrain_libsvmnusvr_currentbest.pkl to /usr/local/share/model/other_models
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/other_models/vmaf_4k_v0.6.1rc.pkl.model to /usr/local/share/model/other_models
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/other_models/nflxall_vmafv3a.pkl to /usr/local/share/model/other_models
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/other_models/nflxall_libsvmnusvr_currentbest.pkl to /usr/local/share/model/other_models
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/other_models/vmaf_v0.6.0.pkl.model to /usr/local/share/model/other_models
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/other_models/nflxtrain_vmafv1.pkl to /usr/local/share/model/other_models
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/other_models/nflxtrain_vmafv3a.pkl to /usr/local/share/model/other_models
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/other_models/nflx_v1.pkl to /usr/local/share/model/other_models
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/other_models/nflxall_vmafv4.pkl.model to /usr/local/share/model/other_models
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/other_models/vmaf_4k_v0.6.1rc.pkl to /usr/local/share/model/other_models
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/other_models/model_V8a.model to /usr/local/share/model/other_models
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/other_models/nflxtrain_vmafv2.pkl.model to /usr/local/share/model/other_models
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/other_models/nflxall_vmafv4.pkl to /usr/local/share/model/other_models
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/other_models/nflxall_vmafv2.pkl.model to /usr/local/share/model/other_models
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/other_models/nflxall_vmafv1.pkl to /usr/local/share/model/other_models
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/other_models/nflxall_libsvmnusvr_currentbest.pkl.model to /usr/local/share/model/other_models
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/other_models/nflxall_vmafv3.pkl.model to /usr/local/share/model/other_models
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/other_models/nflx_vmaff_rf_v1.pkl to /usr/local/share/model/other_models
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/other_models/nflxall_vmafv3a.pkl.model to /usr/local/share/model/other_models
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/other_models/nflxtrain_vmafv3.pkl to /usr/local/share/model/other_models
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/other_models/nflxtrain_norm_type_none.pkl to /usr/local/share/model/other_models
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/other_models/nflxall_vmafv3.pkl to /usr/local/share/model/other_models
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/other_models/nflxall_vmafv2.pkl to /usr/local/share/model/other_models
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/other_models/nflxall_vmafv1.pkl.model to /usr/local/share/model/other_models
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/other_models/nflxtrain_vmafv3.pkl.model to /usr/local/share/model/other_models
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/other_models/niqe_v0.1.pkl to /usr/local/share/model/other_models
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/other_models/nflx_vmaff_rf_v2.pkl to /usr/local/share/model/other_models
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/other_models/nflxtrain_vmafv2.pkl to /usr/local/share/model/other_models
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/other_models/vmaf_v0.6.0.pkl to /usr/local/share/model/other_models
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/other_models/nflxtrain_vmafv3a.pkl.model to /usr/local/share/model/other_models
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/other_models/nflxtrain_vmafv1.pkl.model to /usr/local/share/model/other_models
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0004.model to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0003 to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0008 to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0014 to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0016.model to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0004 to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0009 to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0007 to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0018 to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0005.model to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0005 to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0018.model to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0012.model to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0003.model to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0017.model to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.model to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0013 to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0001.model to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0012 to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0002.model to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0006 to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0015 to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0014.model to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0016 to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0006.model to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0019.model to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0002 to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0009.model to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0008.model to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0001 to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0017 to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0019 to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0015.model to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0010 to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0010.model to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0011 to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0007.model to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0011.model to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.2/vmaf_rb_v0.6.2.pkl.0013.model to /usr/local/share/model/vmaf_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0004 to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0009 to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0011.model to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0008 to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0011 to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0003.model to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0006 to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0002.model to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0015 to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0016 to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.model to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0012.model to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0001 to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0013 to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0015.model to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0018 to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0006.model to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0019.model to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0003 to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0009.model to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0017 to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0007 to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0013.model to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0016.model to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0019 to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0004.model to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0005 to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0008.model to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0010 to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0007.model to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0014.model to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0001.model to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0012 to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0005.model to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0010.model to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0018.model to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0002 to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0017.model to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.pkl.0014 to /usr/local/share/model/vmaf_4k_rb_v0.6.2
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0011.model to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0006 to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0015 to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0009 to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0010 to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0002.model to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0009.model to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0013.model to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0019.model to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0007 to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0006.model to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0007.model to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0005.model to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0012 to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0017.model to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0015.model to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0020 to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0004.model to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0008 to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0001.model to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0004 to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0012.model to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0011 to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0003.model to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.model to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0018.model to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0019 to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0001 to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0016 to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0014 to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0013 to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0005 to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0020.model to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0003 to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0008.model to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0014.model to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0017 to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0018 to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0002 to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0016.model to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_rb_v0.6.3/vmaf_rb_v0.6.3.pkl.0010.model to /usr/local/share/model/vmaf_rb_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0009.model to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0014.model to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0008 to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0015 to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0020.model to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0019 to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0012 to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0006 to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0004 to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0011.model to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0003.model to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.model to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0009 to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0001.model to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0013 to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0012.model to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0005.model to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0003 to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0004.model to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0005 to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0001 to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0010.model to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0015.model to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0017 to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0007.model to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0016 to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0007 to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0013.model to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0020 to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0014 to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0018 to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0019.model to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0016.model to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0017.model to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0008.model to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0002.model to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0018.model to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0011 to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0010 to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0002 to /usr/local/share/model/vmaf_b_v0.6.3
Installing /home/emre/vmaf/vmaf-master/libvmaf/../model/vmaf_b_v0.6.3/vmaf_b_v0.6.3.pkl.0006.model to /usr/local/share/model/vmaf_b_v0.6.3
Installing src/libvmaf.so to /usr/local/lib/x86_64-linux-gnu
Installing src/libvmaf.a to /usr/local/lib/x86_64-linux-gnu
Installing tools/vmafossexec to /usr/local/bin
Installing /home/emre/vmaf/vmaf-master/libvmaf/include/libvmaf/libvmaf.h to /usr/local/include/libvmaf
Installing /home/emre/vmaf/vmaf-master/libvmaf/build/include/libvmaf/version.h to /usr/local/include/libvmaf
Installing /home/emre/vmaf/vmaf-master/libvmaf/build/meson-private/libvmaf.pc to /usr/local/lib/x86_64-linux-gnu/pkgconfig
/vmaf/FFmpeg-master$ sudo ./configure —enable-libvmaf —enable-version3
[sudo] password for emre:
install prefix /usr/local
source path .
C compiler gcc
C library glibc
ARCH x86 (generic)
big-endian no
runtime cpu detection yes
standalone assembly yes
x86 assembler nasm
MMX enabled yes
MMXEXT enabled yes
3DNow! enabled yes
3DNow! extended enabled yes
SSE enabled yes
SSSE3 enabled yes
AESNI enabled yes
AVX enabled yes
AVX2 enabled yes
AVX-512 enabled yes
XOP enabled yes
FMA3 enabled yes
FMA4 enabled yes
i686 features enabled yes
CMOV is fast yes
EBX available yes
EBP available yes
debug symbols yes
strip symbols yes
optimize for size no
optimizations yes
static yes
shared no
postprocessing support no
network support yes
threading support pthreads
safe bitstream reader yes
texi2html enabled no
perl enabled yes
pod2man enabled yes
makeinfo enabled no
makeinfo supports HTML no
External libraries:
iconv lzma
libvmaf zlib
External libraries providing hardware acceleration:
v4l2_m2m
Libraries:
avcodec avformat swscale
avdevice avutil
avfilter swresample
Programs:
ffmpeg ffprobe
Enabled decoders:
aac fits pgmyuv
aac_fixed flac pgssub
aac_latm flashsv pictor
aasc flashsv2 pixlet
ac3 flic pjs
ac3_fixed flv png
acelp_kelvin fmvc ppm
adpcm_4xm fourxm prores
adpcm_adx fraps prosumer
adpcm_afc frwu psd
adpcm_agm g2m ptx
adpcm_aica g723_1 qcelp
adpcm_argo g729 qdm2
adpcm_ct gdv qdmc
adpcm_dtk gif qdraw
adpcm_ea gremlin_dpcm qpeg
adpcm_ea_maxis_xa gsm qtrle
adpcm_ea_r1 gsm_ms r10k
adpcm_ea_r2 h261 r210
adpcm_ea_r3 h263 ra_144
adpcm_ea_xas h263_v4l2m2m ra_288
adpcm_g722 h263i ralf
adpcm_g726 h263p rasc
adpcm_g726le h264 rawvideo
adpcm_ima_alp h264_v4l2m2m realtext
adpcm_ima_amv hap rl2
adpcm_ima_apc hca roq
adpcm_ima_apm hcom roq_dpcm
adpcm_ima_dat4 hevc rpza
adpcm_ima_dk3 hnm4_video rscc
adpcm_ima_dk4 hq_hqa rv10
adpcm_ima_ea_eacs hqx rv20
adpcm_ima_ea_sead huffyuv rv30
adpcm_ima_iss hymt rv40
adpcm_ima_mtf iac s302m
adpcm_ima_oki idcin sami
adpcm_ima_qt idf sanm
adpcm_ima_rad iff_ilbm sbc
adpcm_ima_smjpeg ilbc scpr
adpcm_ima_ssi imc screenpresso
adpcm_ima_wav imm4 sdx2_dpcm
adpcm_ima_ws imm5 sgi
adpcm_ms indeo2 sgirle
adpcm_mtaf indeo3 sheervideo
adpcm_psx indeo4 shorten
adpcm_sbpro_2 indeo5 sipr
adpcm_sbpro_3 interplay_acm siren
adpcm_sbpro_4 interplay_dpcm smackaud
adpcm_swf interplay_video smacker
adpcm_thp jacosub smc
adpcm_thp_le jpeg2000 smvjpeg
adpcm_vima jpegls snow
adpcm_xa jv sol_dpcm
adpcm_yamaha kgv1 sonic
adpcm_zork kmvc sp5x
agm lagarith speedhq
aic loco srgc
alac lscr srt
alias_pix m101 ssa
als mace3 stl
amrnb mace6 subrip
amrwb magicyuv subviewer
amv mdec subviewer1
anm metasound sunrast
ansi microdvd svq1
ape mimic svq3
apng mjpeg tak
aptx mjpegb targa
aptx_hd mlp targa_y216
arbc mmvideo tdsc
ass motionpixels text
asv1 movtext theora
asv2 mp1 thp
atrac1 mp1float tiertexseqvideo
atrac3 mp2 tiff
atrac3al mp2float tmv
atrac3p mp3 truehd
atrac3pal mp3adu truemotion1
atrac9 mp3adufloat truemotion2
aura mp3float truemotion2rt
aura2 mp3on4 truespeech
avrn mp3on4float tscc
avrp mpc7 tscc2
avs mpc8 tta
avui mpeg1_v4l2m2m twinvq
ayuv mpeg1video txd
bethsoftvid mpeg2_v4l2m2m ulti
bfi mpeg2video utvideo
bink mpeg4 v210
binkaudio_dct mpeg4_v4l2m2m v210x
binkaudio_rdft mpegvideo v308
bintext mpl2 v408
bitpacked msa1 v410
bmp mscc vb
bmv_audio msmpeg4v1 vble
bmv_video msmpeg4v2 vc1
brender_pix msmpeg4v3 vc1_v4l2m2m
c93 msrle vc1image
cavs mss1 vcr1
ccaption mss2 vmdaudio
cdgraphics msvideo1 vmdvideo
cdtoons mszh vmnc
cdxl mts2 vorbis
cfhd mvc1 vp3
cinepak mvc2 vp4
clearvideo mvdv vp5
cljr mvha vp6
cllc mwsc vp6a
comfortnoise mxpeg vp6f
cook nellymoser vp7
cpia nuv vp8
cscd on2avc vp8_v4l2m2m
cyuv opus vp9
dca paf_audio vp9_v4l2m2m
dds paf_video vplayer
derf_dpcm pam vqa
dfa pbm wavpack
dirac pcm_alaw wcmv
dnxhd pcm_bluray webp
dolby_e pcm_dvd webvtt
dpx pcm_f16le wmalossless
dsd_lsbf pcm_f24le wmapro
dsd_lsbf_planar pcm_f32be wmav1
dsd_msbf pcm_f32le wmav2
dsd_msbf_planar pcm_f64be wmavoice
dsicinaudio pcm_f64le wmv1
dsicinvideo pcm_lxf wmv2
dss_sp pcm_mulaw wmv3
dst pcm_s16be wmv3image
dvaudio pcm_s16be_planar wnv1
dvbsub pcm_s16le wrapped_avframe
dvdsub pcm_s16le_planar ws_snd1
dvvideo pcm_s24be xan_dpcm
dxa pcm_s24daud xan_wc3
dxtory pcm_s24le xan_wc4
dxv pcm_s24le_planar xbin
eac3 pcm_s32be xbm
eacmv pcm_s32le xface
eamad pcm_s32le_planar xl
eatgq pcm_s64be xma1
eatgv pcm_s64le xma2
eatqi pcm_s8 xpm
eightbps pcm_s8_planar xsub
eightsvx_exp pcm_u16be xwd
eightsvx_fib pcm_u16le y41p
escape124 pcm_u24be ylc
escape130 pcm_u24le yop
evrc pcm_u32be yuv4
exr pcm_u32le zero12v
ffv1 pcm_u8 zerocodec
ffvhuff pcm_vidc zlib
ffwavesynth pcx zmbv
fic pgm
Enabled encoders:
a64multi jpegls ppm
a64multi5 ljpeg prores
aac magicyuv prores_aw
ac3 mjpeg prores_ks
ac3_fixed mlp qtrle
adpcm_adx movtext r10k
adpcm_g722 mp2 r210
adpcm_g726 mp2fixed ra_144
adpcm_g726le mpeg1video rawvideo
adpcm_ima_qt mpeg2video roq
adpcm_ima_wav mpeg4 roq_dpcm
adpcm_ms mpeg4_v4l2m2m rv10
adpcm_swf msmpeg4v2 rv20
adpcm_yamaha msmpeg4v3 s302m
alac msvideo1 sbc
alias_pix nellymoser sgi
amv opus snow
apng pam sonic
aptx pbm sonic_ls
aptx_hd pcm_alaw srt
ass pcm_dvd ssa
asv1 pcm_f32be subrip
asv2 pcm_f32le sunrast
avrp pcm_f64be svq1
avui pcm_f64le targa
ayuv pcm_mulaw text
bmp pcm_s16be tiff
cinepak pcm_s16be_planar truehd
cljr pcm_s16le tta
comfortnoise pcm_s16le_planar utvideo
dca pcm_s24be v210
dnxhd pcm_s24daud v308
dpx pcm_s24le v408
dvbsub pcm_s24le_planar v410
dvdsub pcm_s32be vc2
dvvideo pcm_s32le vorbis
eac3 pcm_s32le_planar vp8_v4l2m2m
ffv1 pcm_s64be wavpack
ffvhuff pcm_s64le webvtt
fits pcm_s8 wmav1
flac pcm_s8_planar wmav2
flashsv pcm_u16be wmv1
flashsv2 pcm_u16le wmv2
flv pcm_u24be wrapped_avframe
g723_1 pcm_u24le xbm
gif pcm_u32be xface
h261 pcm_u32le xsub
h263 pcm_u8 xwd
h263_v4l2m2m pcm_vidc y41p
h263p pcx yuv4
h264_v4l2m2m pgm zlib
huffyuv pgmyuv zmbv
jpeg2000 png
Enabled parsers:
aac dvd_nav mpegvideo
aac_latm dvdsub opus
ac3 flac png
adx g723_1 pnm
av1 g729 rv30
avs2 gif rv40
bmp gsm sbc
cavsvideo h261 sipr
cook h263 tak
dca h264 vc1
dirac hevc vorbis
dnxhd mjpeg vp3
dpx mlp vp8
dvaudio mpeg4video vp9
dvbsub mpegaudio xma
Enabled demuxers:
aa hls pcm_s24be
aac hnm pcm_s24le
ac3 ico pcm_s32be
acm idcin pcm_s32le
act idf pcm_s8
adf iff pcm_u16be
adp ifv pcm_u16le
ads ilbc pcm_u24be
adx image2 pcm_u24le
aea image2_alias_pix pcm_u32be
afc image2_brender_pix pcm_u32le
aiff image2pipe pcm_u8
aix image_bmp_pipe pcm_vidc
alp image_dds_pipe pjs
amr image_dpx_pipe pmp
amrnb image_exr_pipe pva
amrwb image_gif_pipe pvf
anm image_j2k_pipe qcp
apc image_jpeg_pipe r3d
ape image_jpegls_pipe rawvideo
apm image_pam_pipe realtext
apng image_pbm_pipe redspark
aptx image_pcx_pipe rl2
aptx_hd image_pgm_pipe rm
aqtitle image_pgmyuv_pipe roq
argo_asf image_pictor_pipe rpl
asf image_png_pipe rsd
asf_o image_ppm_pipe rso
ass image_psd_pipe rtp
ast image_qdraw_pipe rtsp
au image_sgi_pipe s337m
av1 image_sunrast_pipe sami
avi image_svg_pipe sap
avr image_tiff_pipe sbc
avs image_webp_pipe sbg
avs2 image_xpm_pipe scc
bethsoftvid image_xwd_pipe sdp
bfi ingenient sdr2
bfstm ipmovie sds
bink ircam sdx
bintext iss segafilm
bit iv8 ser
bmv ivf shorten
boa ivr siff
brstm jacosub sln
c93 jv smacker
caf kux smjpeg
cavsvideo kvag smush
cdg live_flv sol
cdxl lmlm4 sox
cine loas spdif
codec2 lrc srt
codec2raw lvf stl
concat lxf str
data m4v subviewer
daud matroska subviewer1
dcstr mgsts sup
derf microdvd svag
dfa mjpeg swf
dhav mjpeg_2000 tak
dirac mlp tedcaptions
dnxhd mlv thp
dsf mm threedostr
dsicin mmf tiertexseq
dss mov tmv
dts mp3 truehd
dtshd mpc tta
dv mpc8 tty
dvbsub mpegps txd
dvbtxt mpegts ty
dxa mpegtsraw v210
ea mpegvideo v210x
ea_cdata mpjpeg vag
eac3 mpl2 vc1
epaf mpsub vc1t
ffmetadata msf vividas
filmstrip msnwc_tcp vivo
fits mtaf vmd
flac mtv vobsub
flic musx voc
flv mv vpk
fourxm mvi vplayer
frm mxf vqf
fsb mxg w64
fwse nc wav
g722 nistsphere wc3
g723_1 nsp webm_dash_manifest
g726 nsv webvtt
g726le nut wsaud
g729 nuv wsd
gdv ogg wsvqa
genh oma wtv
gif paf wv
gsm pcm_alaw wve
gxf pcm_f32be xa
h261 pcm_f32le xbin
h263 pcm_f64be xmv
h264 pcm_f64le xvag
hca pcm_mulaw xwma
hcom pcm_s16be yop
hevc pcm_s16le yuv4mpegpipe
Enabled muxers:
a64 hls pcm_s32le
ac3 ico pcm_s8
adts ilbc pcm_u16be
adx image2 pcm_u16le
aiff image2pipe pcm_u24be
amr ipod pcm_u24le
apng ircam pcm_u32be
aptx ismv pcm_u32le
aptx_hd ivf pcm_u8
asf jacosub pcm_vidc
asf_stream latm psp
ass lrc rawvideo
ast m4v rm
au matroska roq
avi matroska_audio rso
avm2 md5 rtp
avs2 microdvd rtp_mpegts
bit mjpeg rtsp
caf mkvtimestamp_v2 sap
cavsvideo mlp sbc
codec2 mmf scc
codec2raw mov segafilm
crc mp2 segment
dash mp3 singlejpeg
data mp4 smjpeg
daud mpeg1system smoothstreaming
dirac mpeg1vcd sox
dnxhd mpeg1video spdif
dts mpeg2dvd spx
dv mpeg2svcd srt
eac3 mpeg2video stream_segment
f4v mpeg2vob streamhash
ffmetadata mpegts sup
fifo mpjpeg swf
fifo_test mxf tee
filmstrip mxf_d10 tg2
fits mxf_opatom tgp
flac null truehd
flv nut tta
framecrc oga uncodedframecrc
framehash ogg vc1
framemd5 ogv vc1t
g722 oma voc
g723_1 opus w64
g726 pcm_alaw wav
g726le pcm_f32be webm
gif pcm_f32le webm_chunk
gsm pcm_f64be webm_dash_manifest
gxf pcm_f64le webp
h261 pcm_mulaw webvtt
h263 pcm_s16be wtv
h264 pcm_s16le wv
hash pcm_s24be yuv4mpegpipe
hds pcm_s24le
hevc pcm_s32be
Enabled protocols:
async http rtp
cache httpproxy srtp
concat icecast subfile
crypto md5 tcp
data mmsh tee
ffrtmphttp mmst udp
file pipe udplite
ftp prompeg unix
gopher rtmp
hls rtmpt
Enabled filters:
abench datascope oscilloscope
abitscope dcshift overlay
acompressor dctdnoiz pad
acontrast deband pal100bars
acopy deblock pal75bars
acrossfade decimate palettegen
acrossover deconvolve paletteuse
acrusher dedot pan
acue deesser perms
addroi deflate photosensitivity
adeclick deflicker pixdesctest
adeclip dejudder pixscope
adelay derain premultiply
aderivative deshake prewitt
adrawgraph despill pseudocolor
aecho detelecine psnr
aemphasis dilation qp
aeval displace random
aevalsrc dnn_processing readeia608
afade doubleweave readvitc
afftdn drawbox realtime
afftfilt drawgraph remap
afifo drawgrid removegrain
afir drmeter removelogo
afirsrc dynaudnorm replaygain
aformat earwax reverse
agate ebur128 rgbashift
agraphmonitor edgedetect rgbtestsrc
ahistogram elbg roberts
aiir entropy rotate
aintegral equalizer scale
ainterleave erosion scale2ref
alimiter extractplanes scroll
allpass extrastereo select
allrgb fade selectivecolor
allyuv fftdnoiz sendcmd
aloop fftfilt separatefields
alphaextract field setdar
alphamerge fieldhint setfield
amerge fieldmatch setparams
ametadata fieldorder setpts
amix fifo setrange
amovie fillborders setsar
amplify firequalizer settb
amultiply flanger showcqt
anequalizer floodfill showfreqs
anlmdn format showinfo
anlms fps showpalette
anoisesrc framepack showspatial
anull framerate showspectrum
anullsink framestep showspectrumpic
anullsrc freezedetect showvolume
apad freezeframes showwaves
aperms gblur showwavespic
aphasemeter geq shuffleframes
aphaser gradfun shuffleplanes
apulsator graphmonitor sidechaincompress
arealtime greyedge sidechaingate
aresample haas sidedata
areverse haldclut sierpinski
arnndn haldclutsrc signalstats
aselect hdcd silencedetect
asendcmd headphone silenceremove
asetnsamples hflip sinc
asetpts highpass sine
asetrate highshelf smptebars
asettb hilbert smptehdbars
ashowinfo histogram sobel
asidedata hqx spectrumsynth
asoftclip hstack split
asplit hue sr
astats hwdownload ssim
astreamselect hwmap stereotools
atadenoise hwupload stereowiden
atempo hysteresis streamselect
atrim idet superequalizer
avectorscope il surround
avgblur inflate swaprect
axcorrelate interleave swapuv
bandpass join tblend
bandreject lagfun telecine
bass lenscorrection testsrc
bbox libvmaf testsrc2
bench life thistogram
bilateral limiter threshold
biquad loop thumbnail
bitplanenoise loudnorm tile
blackdetect lowpass tlut2
blend lowshelf tmix
bm3d lumakey tonemap
bwdif lut tpad
cas lut1d transpose
cellauto lut2 treble
channelmap lut3d tremolo
channelsplit lutrgb trim
chorus lutyuv unpremultiply
chromahold mandelbrot unsharp
chromakey maskedclamp v360
chromashift maskedmax vectorscope
ciescope maskedmerge vflip
codecview maskedmin vfrdet
color maskfun vibrance
colorbalance mcompand vibrato
colorchannelmixer median vignette
colorhold mergeplanes vmafmotion
colorkey mestimate volume
colorlevels metadata volumedetect
colorspace midequalizer vstack
compand minterpolate w3fdif
compensationdelay mix waveform
concat movie weave
convolution negate xbr
convolve nlmeans xfade
copy noformat xmedian
crop noise xstack
crossfeed normalize yadif
crystalizer null yaepblur
cue nullsink yuvtestsrc
curves nullsrc zoompan
Enabled bsfs:
aac_adtstoasc h264_redundant_pps null
av1_frame_merge hapqa_extract prores_metadata
av1_frame_split hevc_metadata remove_extradata
av1_metadata hevc_mp4toannexb text2movsub
chomp imx_dump_header trace_headers
dca_core mjpeg2jpeg truehd_core
dump_extradata mjpega_dump_header vp9_metadata
eac3_core mov2textsub vp9_raw_reorder
extract_extradata mp3_header_decompress vp9_superframe
filter_units mpeg2_metadata vp9_superframe_split
h264_metadata mpeg4_unpack_bframes
h264_mp4toannexb noise
Enabled indevs:
fbdev oss
lavfi v4l2
Enabled outdevs:
fbdev oss v4l2
License: LGPL version 3 or later
config.h is unchanged
config.asm is unchanged
libavutil/avconfig.h is unchanged
libavfilter/filter_list.c is unchanged
libavcodec/codec_list.c is unchanged
libavcodec/parser_list.c is unchanged
libavcodec/bsf_list.c is unchanged
libavformat/demuxer_list.c is unchanged
libavformat/muxer_list.c is unchanged
libavdevice/indev_list.c is unchanged
libavdevice/outdev_list.c is unchanged
libavformat/protocol_list.c is unchanged
ffbuild/config.sh is unchanged
emre@emre-ABRA-A5-V12-1: /vmaf/FFmpeg-master$ sudo make
POD doc/ffmpeg.pod
POD doc/ffprobe.pod
POD doc/ffmpeg-all.pod
POD doc/ffprobe-all.pod
MAN doc/ffmpeg.1
MAN doc/ffprobe.1
MAN doc/ffmpeg-all.1
MAN doc/ffprobe-all.1
emre@emre-ABRA-A5-V12-1: /vmaf/FFmpeg-master$ sudo make install
INSTALL doc/ffmpeg.1
INSTALL doc/ffprobe.1
INSTALL doc/ffmpeg-all.1
INSTALL doc/ffprobe-all.1
INSTALL doc/ffmpeg-utils.1
INSTALL doc/ffmpeg-scaler.1
INSTALL doc/ffmpeg-resampler.1
INSTALL doc/ffmpeg-codecs.1
INSTALL doc/ffmpeg-bitstream-filters.1
INSTALL doc/ffmpeg-formats.1
INSTALL doc/ffmpeg-protocols.1
INSTALL doc/ffmpeg-devices.1
INSTALL doc/ffmpeg-filters.1
INSTALL doc/libavutil.3
INSTALL doc/libswscale.3
INSTALL doc/libswresample.3
INSTALL doc/libavcodec.3
INSTALL doc/libavformat.3
INSTALL doc/libavdevice.3
INSTALL doc/libavfilter.3
INSTALL doc/ffmpeg.1
INSTALL doc/ffprobe.1
INSTALL doc/ffmpeg-all.1
INSTALL doc/ffprobe-all.1
INSTALL doc/ffmpeg-utils.1
INSTALL doc/ffmpeg-scaler.1
INSTALL doc/ffmpeg-resampler.1
INSTALL doc/ffmpeg-codecs.1
INSTALL doc/ffmpeg-bitstream-filters.1
INSTALL doc/ffmpeg-formats.1
INSTALL doc/ffmpeg-protocols.1
INSTALL doc/ffmpeg-devices.1
INSTALL doc/ffmpeg-filters.1
INSTALL doc/libavutil.3
INSTALL doc/libswscale.3
INSTALL doc/libswresample.3
INSTALL doc/libavcodec.3
INSTALL doc/libavformat.3
INSTALL doc/libavdevice.3
INSTALL doc/libavfilter.3
INSTALL install-progs-yes
INSTALL ffmpeg
INSTALL ffprobe
INSTALL presets/libvpx-1080p50_60.ffpreset
INSTALL presets/libvpx-360p.ffpreset
INSTALL presets/libvpx-1080p.ffpreset
INSTALL presets/libvpx-720p50_60.ffpreset
INSTALL presets/libvpx-720p.ffpreset
INSTALL doc/ffprobe.xsd
INSTALL doc/examples/transcoding.c
INSTALL doc/examples/vaapi_transcode.c
INSTALL doc/examples/demuxing_decoding.c
INSTALL doc/examples/filtering_video.c
INSTALL doc/examples/muxing.c
INSTALL doc/examples/encode_audio.c
INSTALL doc/examples/hw_decode.c
INSTALL doc/examples/filtering_audio.c
INSTALL doc/examples/http_multiclient.c
INSTALL doc/examples/decode_video.c
INSTALL doc/examples/avio_list_dir.c
INSTALL doc/examples/resampling_audio.c
INSTALL doc/examples/metadata.c
INSTALL doc/examples/remuxing.c
INSTALL doc/examples/extract_mvs.c
INSTALL doc/examples/avio_reading.c
INSTALL doc/examples/qsvdec.c
INSTALL doc/examples/vaapi_encode.c
INSTALL doc/examples/decode_audio.c
INSTALL doc/examples/filter_audio.c
INSTALL doc/examples/transcode_aac.c
INSTALL doc/examples/encode_video.c
INSTALL doc/examples/scaling_video.c
INSTALL doc/examples/README
INSTALL doc/examples/Makefile
INSTALL doc/examples/transcoding.c
INSTALL doc/examples/vaapi_transcode.c
INSTALL doc/examples/demuxing_decoding.c
INSTALL doc/examples/filtering_video.c
INSTALL doc/examples/muxing.c
INSTALL doc/examples/encode_audio.c
INSTALL doc/examples/hw_decode.c
INSTALL doc/examples/filtering_audio.c
INSTALL doc/examples/http_multiclient.c
INSTALL doc/examples/decode_video.c
INSTALL doc/examples/avio_list_dir.c
INSTALL doc/examples/resampling_audio.c
INSTALL doc/examples/metadata.c
INSTALL doc/examples/remuxing.c
INSTALL doc/examples/extract_mvs.c
INSTALL doc/examples/avio_reading.c
INSTALL doc/examples/qsvdec.c
INSTALL doc/examples/vaapi_encode.c
INSTALL doc/examples/decode_audio.c
INSTALL doc/examples/filter_audio.c
INSTALL doc/examples/transcode_aac.c
INSTALL doc/examples/encode_video.c
INSTALL doc/examples/scaling_video.c
INSTALL doc/examples/README
INSTALL doc/examples/Makefile
INSTALL libavdevice/libavdevice.a
INSTALL libavfilter/libavfilter.a
INSTALL libavformat/libavformat.a
INSTALL libavcodec/libavcodec.a
INSTALL libswresample/libswresample.a
INSTALL libswscale/libswscale.a
INSTALL libavutil/libavutil.a
INSTALL libavdevice/avdevice.h
INSTALL libavdevice/version.h
INSTALL libavdevice/libavdevice.pc
INSTALL libavfilter/avfilter.h
INSTALL libavfilter/buffersink.h
INSTALL libavfilter/buffersrc.h
INSTALL libavfilter/version.h
INSTALL libavfilter/libavfilter.pc
INSTALL libavformat/avformat.h
INSTALL libavformat/avio.h
INSTALL libavformat/version.h
INSTALL libavformat/libavformat.pc
INSTALL libavcodec/ac3_parser.h
INSTALL libavcodec/adts_parser.h
INSTALL libavcodec/avcodec.h
INSTALL libavcodec/avdct.h
INSTALL libavcodec/avfft.h
INSTALL libavcodec/d3d11va.h
INSTALL libavcodec/dirac.h
INSTALL libavcodec/dv_profile.h
INSTALL libavcodec/dxva2.h
INSTALL libavcodec/jni.h
INSTALL libavcodec/mediacodec.h
INSTALL libavcodec/qsv.h
INSTALL libavcodec/vaapi.h
INSTALL libavcodec/vdpau.h
INSTALL libavcodec/version.h
INSTALL libavcodec/videotoolbox.h
INSTALL libavcodec/vorbis_parser.h
INSTALL libavcodec/xvmc.h
INSTALL libavcodec/libavcodec.pc
INSTALL libswresample/swresample.h
INSTALL libswresample/version.h
INSTALL libswresample/libswresample.pc
INSTALL libswscale/swscale.h
INSTALL libswscale/version.h
INSTALL libswscale/libswscale.pc
INSTALL libavutil/adler32.h
INSTALL libavutil/aes.h
INSTALL libavutil/aes_ctr.h
INSTALL libavutil/attributes.h
INSTALL libavutil/audio_fifo.h
INSTALL libavutil/avassert.h
INSTALL libavutil/avstring.h
INSTALL libavutil/avutil.h
INSTALL libavutil/base64.h
INSTALL libavutil/blowfish.h
INSTALL libavutil/bprint.h
INSTALL libavutil/bswap.h
INSTALL libavutil/buffer.h
INSTALL libavutil/cast5.h
INSTALL libavutil/camellia.h
INSTALL libavutil/channel_layout.h
INSTALL libavutil/common.h
INSTALL libavutil/cpu.h
INSTALL libavutil/crc.h
INSTALL libavutil/des.h
INSTALL libavutil/dict.h
INSTALL libavutil/display.h
INSTALL libavutil/downmix_info.h
INSTALL libavutil/encryption_info.h
INSTALL libavutil/error.h
INSTALL libavutil/eval.h
INSTALL libavutil/fifo.h
INSTALL libavutil/file.h
INSTALL libavutil/frame.h
INSTALL libavutil/hash.h
INSTALL libavutil/hdr_dynamic_metadata.h
INSTALL libavutil/hmac.h
INSTALL libavutil/hwcontext.h
INSTALL libavutil/hwcontext_cuda.h
INSTALL libavutil/hwcontext_d3d11va.h
INSTALL libavutil/hwcontext_drm.h
INSTALL libavutil/hwcontext_dxva2.h
INSTALL libavutil/hwcontext_qsv.h
INSTALL libavutil/hwcontext_mediacodec.h
INSTALL libavutil/hwcontext_opencl.h
INSTALL libavutil/hwcontext_vaapi.h
INSTALL libavutil/hwcontext_videotoolbox.h
INSTALL libavutil/hwcontext_vdpau.h
INSTALL libavutil/hwcontext_vulkan.h
INSTALL libavutil/imgutils.h
INSTALL libavutil/intfloat.h
INSTALL libavutil/intreadwrite.h
INSTALL libavutil/lfg.h
INSTALL libavutil/log.h
INSTALL libavutil/macros.h
INSTALL libavutil/mathematics.h
INSTALL libavutil/mastering_display_metadata.h
INSTALL libavutil/md5.h
INSTALL libavutil/mem.h
INSTALL libavutil/motion_vector.h
INSTALL libavutil/murmur3.h
INSTALL libavutil/opt.h
INSTALL libavutil/parseutils.h
INSTALL libavutil/pixdesc.h
INSTALL libavutil/pixelutils.h
INSTALL libavutil/pixfmt.h
INSTALL libavutil/random_seed.h
INSTALL libavutil/rc4.h
INSTALL libavutil/rational.h
INSTALL libavutil/replaygain.h
INSTALL libavutil/ripemd.h
INSTALL libavutil/samplefmt.h
INSTALL libavutil/sha.h
INSTALL libavutil/sha512.h
INSTALL libavutil/spherical.h
INSTALL libavutil/stereo3d.h
INSTALL libavutil/threadmessage.h
INSTALL libavutil/time.h
INSTALL libavutil/timecode.h
INSTALL libavutil/timestamp.h
INSTALL libavutil/tree.h
INSTALL libavutil/twofish.h
INSTALL libavutil/version.h
INSTALL libavutil/xtea.h
INSTALL libavutil/tea.h
INSTALL libavutil/tx.h
INSTALL libavutil/lzo.h
INSTALL libavutil/avconfig.h
INSTALL libavutil/ffversion.h
INSTALL libavutil/libavutil.pc
The text was updated successfully, but these errors were encountered:
Источник
I have the same error. It was working fine so I suppose the latest update has broken something.
I’m going to add some information:
Snap version
$ snap version
snap 2.35
snapd 2.35
series 16
ubuntu 18.04
kernel 4.15.0-34-generic
ffmpeg version
$ snap info ffmpeg
name: ffmpeg
summary: A complete solution to record, convert and stream audio and video.
publisher: Snapcrafters
contact: https://github.com/snapcrafters/ffmpeg/issues
license: unset
description: |
FFmpeg is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream,
filter and play pretty much anything that humans and machines have created. It supports the most
obscure ancient formats up to the cutting edge. No matter if they were designed by some standards
committee, the community or a corporation.
commands:
- ffmpeg
snap-id: Ee7LGphwQR669pcfCCdl0oJQouta69to
tracking: stable
refresh-date: today at 14:31 CEST
channels:
stable: 4.0.2 (206) 46MB -
candidate: ↑
beta: ↑
edge: 4.0.2 (250) 45MB -
installed: 4.0.2 (206) 46MB -
ffmpeg error
$ ffmpeg
libGL error: unable to load driver: i965_dri.so
libGL error: driver pointer missing
libGL error: failed to load driver: i965
libGL error: unable to load driver: i965_dri.so
libGL error: driver pointer missing
libGL error: failed to load driver: i965
libGL error: unable to load driver: swrast_dri.so
libGL error: failed to load driver: swrast
X Error: GLXBadContext
Request Major code 155 (GLX)
Request Minor code 6 ()
Error Serial #55
Current Serial #54
ffmpeg version n4.0.2 Copyright (c) 2000-2018 the FFmpeg developers
built with gcc 5.4.0 (Ubuntu 5.4.0-6ubuntu1~16.04.10) 20160609
configuration: --prefix= --prefix=/usr --disable-debug --disable-doc --disable-static --enable-avisynth --enable-cuda --enable-cuvid --enable-libdrm --enable-gpl --enable-libass --enable-libfdk-aac --enable-libfontconfig --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libv4l2 --enable-libvorbis --enable-libx264 --enable-libx265 --enable-libxcb --enable-nonfree --enable-nvenc --enable-omx --enable-runtime-cpudetect --enable-shared --enable-vaapi --enable-vdpau --enable-version3 --enable-xlib
libavutil 56. 14.100 / 56. 14.100
libavcodec 58. 18.100 / 58. 18.100
libavformat 58. 12.100 / 58. 12.100
libavdevice 58. 3.100 / 58. 3.100
libavfilter 7. 16.100 / 7. 16.100
libswscale 5. 1.100 / 5. 1.100
libswresample 3. 1.100 / 3. 1.100
libpostproc 55. 1.100 / 55. 1.100
ffprobe error
$ /snap/ffmpeg/current/usr/bin/ffprobe
/snap/ffmpeg/current/usr/bin/ffprobe: error while loading shared libraries: libavdevice.so.58: cannot open shared object file: No such file or directory
However those dependencies exist:
$ find /snap/ffmpeg -name libavdevice.so.58
/snap/ffmpeg/206/usr/lib/libavdevice.so.58
$ find /snap/ffmpeg -name i965_dri.so
/snap/ffmpeg/206/usr/lib/x86_64-linux-gnu/dri/i965_dri.so
$ find /snap/ffmpeg -name swrast_dri.so
/snap/ffmpeg/206/usr/lib/x86_64-linux-gnu/dri/swrast_dri.so
Problem: I recently ‘updated’ to Ubuntu 14.10 from Ubuntu 14.04. Since then, whenever I try to issue any command to FFMPEG, I get the following:
$ ffmpeg -i
ffmpeg: error while loading shared libraries: libass.so.4: cannot open shared object file: No such file or directory
I’ve searched the internet extensively, tried recompiling FFMPEG from source using the guide here: https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu and have tried reinstalling libavutil-dev all with no effect.
Can anybody suggest what might be causing FFMPEG to suddenly lose its ability to communicate with libass after my Ubuntu 14.10 update?
Thanks!
asked Dec 31, 2014 at 11:13
OK, now solved.
For future reference, whatever Ubuntu have changed in their update to 14.10, they’ve obviously changed the location or naming or something of their libass, because when I tried building it from source instead of installing from repository, it worked fine…
For reference, when building ffmpeg sources, instead of:
sudo apt-get install libx264-dev
use:
cd ~/ffmpeg_sources
wget http://download.videolan.org/pub/x264/snapshots/last_x264.tar.bz2
tar xjvf last_x264.tar.bz2
cd x264-snapshot*
PATH="$HOME/bin:$PATH" ./configure --prefix="$HOME/ffmpeg_build" --bindir="$HOME/bin" --enable-static
PATH="$HOME/bin:$PATH" make
make install
make distclean
And it works fine…
answered Dec 31, 2014 at 11:51
Try installing the missing package:
sudo apt-get install libass4
answered Jan 21, 2015 at 8:53
This may not be a proper answer since it doesn’t address the root cause, whatever it was. But I simply installed libass.so.4.
- It can be found here (Ubuntu): http://packages.ubuntu.com/trusty/amd64/libass4
- Install with
dpkg -t package.deb
answered Oct 21, 2016 at 17:30
felwithefelwithe
7242 gold badges11 silver badges23 bronze badges
The question is 5 years old, but thought this could help someone with the same problem.
Another solution is to change a minor detail in the script provided by the guide you cited (for compiling FFmpeg from sources). The section under «FFmpeg» (towards the end) has a
PATH="$HOME/bin:$PATH" PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig" ./configure
(5th line from top). That overwrites your PKG_CONFIG_PATH so that it doesn’t find the .pc file. So #find / -name library.pc
and note the path to it. #export PKG_CONFIG_PATH=path/to/your/pcfile
. Then change that line of the script to
PATH="$HOME/bin:$PATH" PKG_CONFIG_PATH="$PKG_CONFIG_PATH:$HOME/ffmpeg_build/lib/pkgconfig" ./configure
(You could also write path/to/your/pcfile
directly there instead of exporting and inserting $PKG_CONFIG_PATH
). The linker should now find it and compile FFmpeg to the end.
answered May 17, 2019 at 15:06
AndycAndyc
1213 bronze badges