Mpg123 reproduz o arquivo anterior

1

É possível usar o mpg123 para reproduzir o arquivo anterior?

Meu uso normal no uso do mpg123

$ mpg123 somefolder/*.mp3

Sei que para pausar podemos usar Ctlr+Z e fg para retomar, Ctrl+C para tocar a próxima música, mas é possível reproduzir uma música anterior?

    
por drerayo 03.05.2014 / 15:28

1 resposta

3

Ah, deixa pra lá, achei, use:

mpg123 -C somefolder/*.mp3

copiado do arquivo man

Ativar as teclas de controle do terminal. Por padrão, use s ou space bar para parar / reiniciar (pausar, não pausar) a reprodução, f para avançar para a próxima música, b para voltar ao início da música, , para retroceder, . para avanço rápido e q para sair. Digite h para obter uma lista completa dos controles disponíveis.

copiado do console de ajuda

[s] or [ ]      interrupt/restart playback (i.e. '(un)pause')
[f]     next track
[d]     previous track
[b]     back to beginning of track
[p]     loop around current position (don't combine with output buffer)
[.]     forward
[,]     rewind
[:]     fast forward
[;]     fast rewind
[>]     fine forward
[<]     fine rewind
[+]     volume up
[-]     volume down
[r]     RVA switch
[v]     verbose switch
[l]     list current playlist, indicating current track there
[t]     display tag info (again)
[m]     print MPEG header info (again)
[h]     this help
[q]     quit
[c] or [C]      pitch up (small step, big step)
[x] or [X]      pitch down (small step, big step)
[w]     reset pitch to zero
[k]     print out current position in playlist and track, for the benefit of some external tool to store bookmarks

Also, the number row (starting at 1, ending at 0) gives you jump points into the current track at 10% intervals.
    
por 03.05.2014 / 15:39