Erros estranhos ao converter vídeo com VLC remotamente no Kali Linux

0

Estou usando o Putty para me conectar à minha máquina Kali Linux remotamente. Eu tenho um mp4 que eu gostaria de converter para mp3 via linha de comando:

cvlc "temp/5b531984164ae64008f644e3236bb09d/" --sout=#transcode{acodec=mp3,vcodec=dummy}:standard{access=file,mux=raw,dst="temp/5b531984164ae64008f644e3236bb09d/input.mp4"} vlc://quit

Mas estou recebendo alguns erros espetaculares:

VLC media player 2.0.3 Twoflower (revision 2.0.2-93-g77aa89e)
[0xa157d8] inhibit interface error: Failed to connect to the D-Bus session daemon: Unable to autolaunch a dbus-daemon without a $DISPLAY for X11
[0xa157d8] main interface error: no suitable interface module
[0x7f154c000b08] main interface error: no suitable interface module
[0x8980a8] main libvlc error: interface "globalhotkeys,none" initialization failed
[0x7f154c000b78] dummy interface: using the dummy interface module...
[0x8ced88] mux_dummy mux: Open
libdvdnav: Using dvdnav version 4.2.0
libdvdread: Encrypted DVD support unavailable.
************************************************
**                                            **
**  No css library available. See             **
**  /usr/share/doc/libdvdread4/README.css     **
**  for more information.                     **
**                                            **
************************************************
libdvdread: Couldn't find device name.
libdvdnav:DVDOpenFilePath:findDVDFile /VIDEO_TS/VIDEO_TS.IFO failed
libdvdnav:DVDOpenFilePath:findDVDFile /VIDEO_TS/VIDEO_TS.BUP failed
libdvdread: Can't open file VIDEO_TS.IFO.
libdvdnav: vm: failed to read VIDEO_TS.IFO
[0xa199e8] main playlist: stopping playback
[0xa28ec8] mux_dummy mux: Open
[0xa2a858] main stream error: cannot pre fill buffer
[0xa2d488] idummy demux: command 'quit'

Todo o Google-foo do mundo não está me ajudando a decifrar esse erro, e eu não estou recebendo nenhuma saída de mp3. Qualquer ajuda que você possa me dar é apreciada!

    
por Luke Salamone 17.09.2015 / 08:40

1 resposta

0

Os primeiros erros não são críticos, na verdade, estou surpreso que cvlc reclama ...

inhibit interface error: Failed to connect to the D-Bus session daemon: Unable to autolaunch a dbus-daemon without a $DISPLAY for X11

em tudo.

O que é crítico é

libdvdread: Encrypted DVD support unavailable.

Você pode ter lido /usr/share/doc/libdvdread4/README.css ou emitido o comando

      apt-cache show libdvdread4

para aprender que:

libdvdread probes for libdvdcss at runtime and if found, will use it to decrypt sections of the DVD as necessary. libdvdcss needs to be installed from third-party repositories (see README.css), it's not included in Debian.

De qualquer forma,

If it is legal for you to use CSS in your juristiction, you can:

  • Manually download and compile the source code from http://www.videolan.org/developers/libdvdcss.html.

Isso se aplica ao Debian e a todos os seus derivados, não apenas a Kali.

    
por 17.09.2015 / 12:29