Como posso reproduzir outro arquivo mp3 sem ter que fechar o arquivo atual em vlc?

1

Eu toquei uma música via terminal. Eu tentei o seguinte e me deu este resultado: -

siddhartharao17@siddhartharao-PC:/media/LENOVO/Music/Hindi Asorted/Ek villain$ vlc --audio Galliyan.mp3 
VLC media player 2.0.8 Twoflower (revision 2.0.8a-0-g68cf50b)
[0x814b908] main libvlc: Running vlc with the default interface. Use 'cvlc' to use vlc without interface.

(vlc:4731): Gtk-WARNING **: Unable to locate theme engine in module_path: "equinox",

(vlc:4731): Gtk-WARNING **: Unable to locate theme engine in module_path: "equinox",

(vlc:4731): Gtk-WARNING **: Unable to locate theme engine in module_path: "pixmap",

(vlc:4731): Gtk-WARNING **: Unable to locate theme engine in module_path: "equinox",

(vlc:4731): Gtk-WARNING **: Unable to locate theme engine in module_path: "pixmap",

(vlc:4731): Gtk-WARNING **: Unable to locate theme engine in module_path: "equinox",

(vlc:4731): Gtk-WARNING **: Unable to locate theme engine in module_path: "equinox",

(vlc:4731): Gtk-WARNING **: Unable to locate theme engine in module_path: "equinox",

(vlc:4731): Gtk-WARNING **: Unable to locate theme engine in module_path: "equinox",

(vlc:4731): Gtk-WARNING **: Unable to locate theme engine in module_path: "pixmap",

(vlc:4731): Gtk-WARNING **: Unable to locate theme engine in module_path: "pixmap",

(vlc:4731): Gtk-WARNING **: Unable to locate theme engine in module_path: "equinox",

(vlc:4731): Gtk-WARNING **: Unable to locate theme engine in module_path: "equinox",

(vlc:4731): Gtk-WARNING **: Unable to locate theme engine in module_path: "equinox",

(vlc:4731): Gtk-WARNING **: Unable to locate theme engine in module_path: "equinox",

(vlc:4731): Gtk-WARNING **: Unable to locate theme engine in module_path: "equinox",

(vlc:4731): Gtk-WARNING **: Unable to locate theme engine in module_path: "pixmap",

(vlc:4731): Gtk-WARNING **: Unable to locate theme engine in module_path: "pixmap",

(vlc:4731): Gtk-WARNING **: Unable to locate theme engine in module_path: "pixmap",

(vlc:4731): Gtk-WARNING **: Unable to locate theme engine in module_path: "pixmap",

(vlc:4731): Gtk-WARNING **: Unable to locate theme engine in module_path: "pixmap",

(vlc:4731): Gtk-WARNING **: Unable to locate theme engine in module_path: "equinox",

(vlc:4731): Gtk-WARNING **: Unable to locate theme engine in module_path: "equinox",

(vlc:4731): Gtk-WARNING **: Unable to locate theme engine in module_path: "equinox",

(vlc:4731): Gtk-WARNING **: Unable to locate theme engine in module_path: "equinox",

(vlc:4731): Gtk-WARNING **: Unable to locate theme engine in module_path: "pixmap",

(vlc:4731): Gtk-WARNING **: Unable to locate theme engine in module_path: "pixmap",

(vlc:4731): Gtk-WARNING **: Unable to locate theme engine in module_path: "pixmap",

(vlc:4731): Gtk-WARNING **: Unable to locate theme engine in module_path: "pixmap",

(vlc:4731): Gtk-WARNING **: Unable to locate theme engine in module_path: "pixmap",

agora, a consulta que tenho é, se eu quiser mudar a música do mesmo terminal (sem abrir uma nova), como fazer isso? Eu tenho procurado, googling, também tentei ler o "vlc --help", mas isso não me ajuda. Eu acredito que vou receber minha resposta aqui. Do que você antecipadamente:)

    
por Siddhartha 06.06.2014 / 18:10

2 respostas

0

Não está claro o que você quer exatamente, tocar música a partir da linha de comando, sem uma interface?

Nesse caso, use cvlc conforme indicado na saída

% bl0ck_qu0te%

Então

cvlc --your-options --audio Galliyan.mp3

Você deve conseguir repetir o comando depois que o mp3 terminar de tocar.

Ou você quer tocar duas faixas ao mesmo tempo? com vlc? Alguns jogadores não permitem que você abra várias instâncias ao mesmo tempo (não tenho certeza sobre a vlc). Se você não pode fazer isso com vlc, use um player diferente que permita múltiplas instâncias, seja gráfico ou linha de comando, ou use 2 jogadores diferentes. Eu sei que você pode tocar música ao mesmo tempo do firefox, audácia e audácia, mas eu não tenho certeza se isso é o que você quer também.

Um mp3 player de linha de comando alternativo? existem vários, aplay é simples. Há muitos substitutos muito bons, veja link

Ou você está querendo continuar usando o terminal? Neste evento, use um "& amp;"

cvlc --your-options --audio Galliyan.mp3 &

Você pode redirecionar mensagens de erro e fechar o terminal

nohup cvlc --your-options --audio Galliyan.mp3 &> /dev/null &
    
por Panther 06.06.2014 / 18:20
1

Você deve definir suas preferências de VLC para permitir que várias instâncias sejam executadas. Para abrir as preferências do VLC, abra o VLC e vá para Ferramentas - > Preferências e confirme que não há marca de seleção sobre "Usar apenas uma instância quando iniciada a partir do gerenciador de arquivos" e sobre "" Permitir apenas uma instância ".

Agora, inicie seu arquivo no terminal da seguinte maneira:

vlc --audio filename &

Observe o & no final do comando. Agora você não precisa terminar seu arquivo atualmente em execução para iniciar um novo.

    
por jobin 06.06.2014 / 18:30