Como instalar o vlc-srpod-plugin?

0

Estou tentando instalar o vlc-srpos-plugin (um plugin VLC que lembra sua posição de vídeo) no Ubuntu 14.04.

Eu baixei e extrai o libsrpos_plugin - *. tar.gz (para sistemas Linux ou Unix)

As instruções dizem:

  • Unix/Linux and similar systems:
    Build and install plugin module:
    ./configure
    make
    make install
    Use configure options to specify VLC include/library/output paths (--with-vlc-*-path options).

Quando executo ./configure sem opções, fico configurando: error: VLC plugin headers not found , mas não consigo descobrir quais valores da opção --with-vlc-*-path usar.

As opções relevantes parecem ter esses nomes:

$ grep "\-\-with\-vlc\-" configure

--with-vlc-include-path location of the VLC SDK headers, defaults to
/usr/include/vlc/plugins
--with-vlc-lib-path location of the vlccore library
--with-vlc-plugin-path location of the VLC plugin modules, defaults to
/usr/include/vlc/plugins
# Check whether --with-vlc-include-path was given.
# Check whether --with-vlc-lib-path was given.
# Check whether --with-vlc-plugin-path was given.

mas que valores devo usar para o Ubuntu 14.04 e o VLC 2.1.4?

Informação extra:

$ whereis vlc
vlc: /usr/bin/vlc /usr/lib/vlc /usr/bin/X11/vlc /usr/include/vlc /usr/share/vlc /usr/share/man/man1/vlc.1.gz

Eu instalei libvlc-dev devido às instruções encontradas em esta questão e aqui , mas o problema existe ainda!

    
por PHP Learner 05.09.2014 / 07:26

1 resposta

0

Instale libvlccore-dev usando o gerenciador de pacotes ou sudo apt-get install libvlccore-dev . Isso resolverá o problema com ./configure

    
por 05.09.2014 / 08:28