tldr/pages/osx/afplay.md

21 lines
431 B
Markdown
Raw Normal View History

2019-11-16 22:30:24 +00:00
# afplay
> Command-line audio player.
> More information: <https://ss64.com/osx/afplay.html>.
2019-11-16 22:30:24 +00:00
- Play a sound file (waits until playback ends):
`afplay {{path/to/file}}`
- Play a sound file at 2x speed (playback rate):
`afplay --rate {{2}} {{path/to/file}}`
2019-11-16 22:30:24 +00:00
- Play a sound file at half speed:
`afplay --rate {{0.5}} {{path/to/file}}`
2019-11-16 22:30:24 +00:00
- Play the first N seconds of a sound file:
`afplay --time {{seconds}} {{path/to/file}}`