LinuxCommandLibrary

mpg123

Console MPEG audio player.

TLDR

Play the specified mp3 files

$ mpg123 [path/to/file1.mp3 path/to/file2.mp3 ...]
copy


Play the mp3 from stdin
$ cat [file.mp3] | mpg123 -
copy


Jump forward to the next song
$ f
copy


Jump back to the beginning for the song
$ b
copy


Stop or replay the current file
$ s
copy


Fast forward
$ .
copy


Quit
$ q
copy

Copied to clipboard