From 0424a4aa71ea5d1875785cfef50974959155bdb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?kleines=20Filmr=C3=B6llchen?= Date: Fri, 14 Jan 2022 12:42:00 +0100 Subject: [PATCH] Base: Modernize aplay documentation Aplay's documentation is updated to reflect the new -s flag. Additionally, "sound" has been replaced by "audio", reflecting the application name. (It's also a more general term in my opinion, but that's debatable.) --- Base/usr/share/man/man1/aplay.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Base/usr/share/man/man1/aplay.md b/Base/usr/share/man/man1/aplay.md index ca53288c10..0c83bf5eab 100644 --- a/Base/usr/share/man/man1/aplay.md +++ b/Base/usr/share/man/man1/aplay.md @@ -1,20 +1,21 @@ ## Name -aplay - play a sound +aplay - play audio ## Synopsis ```**sh -$ aplay [--loop] +$ aplay [--loop] [--sample-progress] ``` ## Description -This program plays a sound specified in `path` through AudioServer. +This program plays an audio file specified in `path` through AudioServer. ## Options * `-l`, `--loop`: Loop playback +* `-s`, `--sample-progress`: Switch to (old-style) sample playback progress. By default, playback is printed as played, remaining and total length, all in minutes and seconds. ## Arguments @@ -24,5 +25,5 @@ This program plays a sound specified in `path` through AudioServer. ```sh $ aplay ~/sound.wav -$ aplay -l ~/music.wav +$ aplay -l ~/music.flac ```