1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-19 00:55:48 +02:00
tldr/pages/common/mpg321.md
Lena 6fd816e36e
pages/*: use lowercase n for integer placeholders (#16033)
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2025-03-27 21:23:12 +05:30

29 lines
998 B
Markdown

# mpg321
> High Performance MPEG 1.0/2.0/2.5 Audio Player for Layer 1, 2, and 3.
> Mpg321 was written (sometime in 1999) to be a drop-in replacement for the (previously) non-free mpg123 player.
> More information: <https://mpg321.sourceforge.net/>.
- Play an audio source exactly `n` times (0 means forever):
`mpg321 -l {{n}} {{path/to/file_a|URL}} {{path/to/file_b|URL}} {{...}}`
- Play a directory recursively:
`mpg321 -B {{path/to/directory}}`
- Enable Basic Keys ( `*` or `/` - Increase or decrease volume, `n` - Skip song, `m` - Mute/unmute.) while playing:
`mpg321 -K {{path/to/file_a|URL}} {{path/to/file_b|URL}} {{...}}`
- Play files randomly until interrupted:
`mpg321 -Z {{path/to/file_a|URL}} {{path/to/file_b|URL}} {{...}}`
- Shuffle the files before playing them once:
`mpg321 -z {{path/to/file_a|URL}} {{path/to/file_b|URL}} {{...}}`
- Play all files in the current directory and subdirectories, randomly (until interrupted), with Basic Keys enabled:
`mpg321 -B -Z -K .`