1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-04 20:15:26 +02:00
tldr/pages/linux/pw-cat.md
Managor ae436c1b00
linux/*: add option placeholders (#16192)
* batch1

* batch2

* batch3

* batch4

* Update matchpathcon.md

* Update pages/linux/arecord.md

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>

* Update pages/linux/arecord.md

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>

* Update pages/linux/arecord.md

Co-authored-by: Wiktor Perskawiec <git@spageektti.cc>

---------

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
Co-authored-by: Wiktor Perskawiec <git@spageektti.cc>
2025-04-19 21:21:53 +00:00

24 lines
666 B
Markdown

# pw-cat
> Play and record audio files through PipeWire.
> More information: <https://docs.pipewire.org/page_man_pw-cat_1.html>.
- Play a WAV file over the default target:
`pw-cat {{[-p|--playback]}} {{path/to/file.wav}}`
- Play a WAV file with a specified resampler quality (4 by default):
`pw-cat {{[-q|--quality]}} {{0..15}} {{[-p|--playback]}} {{path/to/file.wav}}`
- Record a sample recording at a volume level of 125%:
`pw-cat {{[-r|--record]}} --volume {{1.25}} {{path/to/file.wav}}`
- Record a sample recording using a different sample rate:
`pw-cat {{[-r|--record]}} --rate {{6000}} {{path/to/file.wav}}`
- Display help:
`pw-cat {{[-h|--help]}}`