a2dismod to avahi-browse: add Chinese translation (#5246)

This commit is contained in:
千玄子
2021-05-02 02:43:23 +08:00
committed by GitHub
parent 9ccc49d98f
commit 92f09753c6
26 changed files with 463 additions and 6 deletions

16
pages.zh/linux/aplay.md Normal file
View File

@@ -0,0 +1,16 @@
# aplay
> ALSA 声卡驱动程序的命令行声音播放器。
> 更多信息:<https://manned.org/aplay>.
- 播放一个文件(会自动根据文件格式确定采样率、位深等):
`aplay {{文件路径}}`
- 以 2500 Hz 播放指定文件的前 10 秒:
`aplay --duration={{10}} --rate={{2500}} {{文件路径}}`
- 以 22050 Hzmono8-bitMu-Law 和 `.au` 格式来播放指定原始文件:
`aplay --channels={{1}} --file-type {{raw}} --rate={{22050}} --format={{mu_law}} {{文件路径}}`