mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
29 lines
321 B
Markdown
29 lines
321 B
Markdown
|
|
## Name
|
||
|
|
|
||
|
|
aplay - play a sound
|
||
|
|
|
||
|
|
## Synopsis
|
||
|
|
|
||
|
|
```**sh
|
||
|
|
$ aplay [--loop] <path>
|
||
|
|
```
|
||
|
|
|
||
|
|
## Description
|
||
|
|
|
||
|
|
This program plays a sound specified in `path` through AudioServer.
|
||
|
|
|
||
|
|
## Options
|
||
|
|
|
||
|
|
* `-l`, `--loop`: Loop playback
|
||
|
|
|
||
|
|
## Arguments
|
||
|
|
|
||
|
|
* `path`: Path to audio file
|
||
|
|
|
||
|
|
## Examples
|
||
|
|
|
||
|
|
```sh
|
||
|
|
$ aplay ~/sound.wav
|
||
|
|
$ aplay -l ~/music.wav
|
||
|
|
```
|