mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-03 04:50:29 +00:00
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.)
This commit is contained in:
parent
4d3a5c21b0
commit
0424a4aa71
Notes:
sideshowbarker
2024-07-17 20:53:35 +09:00
Author: https://github.com/kleinesfilmroellchen Commit: https://github.com/SerenityOS/serenity/commit/0424a4aa71e Pull-request: https://github.com/SerenityOS/serenity/pull/11887
1 changed files with 5 additions and 4 deletions
|
@ -1,20 +1,21 @@
|
|||
## Name
|
||||
|
||||
aplay - play a sound
|
||||
aplay - play audio
|
||||
|
||||
## Synopsis
|
||||
|
||||
```**sh
|
||||
$ aplay [--loop] <path>
|
||||
$ aplay [--loop] [--sample-progress] <path>
|
||||
```
|
||||
|
||||
## 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
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue