Tell VLC where to look for plugins.dat file

Posted by puk on Super User See other posts from Super User or by puk
Published on 2013-11-02T21:17:28Z Indexed on 2013/11/02 22:00 UTC
Read the original article Hit count: 430

Filed under:
|

I am trying to build vlc from source (I will include installation script below), but when I try to run vlc I get the following error

main libvlc warning: cannot read /home/user/downloads/vlc3/vlc/src/.libs/vlc/plugins/plugins.dat (No such file or directory)

Why is it even looking in that non existant directory? The plugins.dat file is in /usr/lib/vlc/plugins/. I tried

export VLC_PLUGIN_PATH=/usr/lib/vlc/plugins/

But it still looks in that non existent path. I can create a symbolic link, but that is a terrible way to do it. If in 6 months I delete my downloads folder, all of a sudden my vlc will break.

Here is the script I am running to install:

./configure --enable-rpi-omxil --enable-dvbpsi --enable-x264 --enable-xcb --with-x --enable-xvideo --enable-sdl --enable-avcodec --enable-avformat --enable-swscale --enable-mad --enable-a52 --enable-libmpeg2 --enable-dvdnav --enable-faad --enable-vorbis --enable-ogg --enable-theora --enable-mkv --enable-freetype --enable-fribidi --enable-speex --enable-flac --enable-live555 --enable-caca --enable-skins2 --enable-alsa --enable-ncurses --enable-debug --enable-lirc --enable-live555 --enable-shout --enable-taglib --enable-vcdx --enable-realrtsp --enable-svg --enable-dvdread --enable-dc1394 --enable-twolame --enable-dirac --enable-aa --enable-jack --enable-bluray --enable-opencv --enable-sftp --enable-pulse --enable-projectm --enable-vsxu --enable-atmo --enable-glspectrum '--with-extra-libs=/usr/local/lib' '--with-extra-includes=/usr/local/include' '--x-libraries=/usr/local/lib' '--x-includes=/usr/local/include' '--prefix=/usr/local' '--mandir=/usr/local/man' '--infodir=/usr/local/info/'

EDIT: I am using the following version:

VLC media player 2.2.0-git Weatherwax (revision 2.1.0-git-1168-g5804dd1)

And the --plugin-path option is no longer supported.

© Super User or respective owner

Related posts about installation

Related posts about vlc