Added VLC configuration

This commit is contained in:
Alessio Papi 2020-08-29 15:05:12 +02:00 committed by Johannes Pohl
parent 98ac8b2fb7
commit db17f1b986
2 changed files with 9 additions and 0 deletions

View file

@ -246,6 +246,7 @@ This [guide](doc/player_setup.md) shows how to configure different players/audio
- [Spotify](doc/player_setup.md#spotify)
- [Process](doc/player_setup.md#process)
- [Line-in](doc/player_setup.md#line-in)
- [VLC](doc/player_setup.md#vlc)
## Roadmap

View file

@ -228,3 +228,11 @@ Audio captured from line-in can be redirected to the snapserver's pipe, e.g. by
#### PulseAudio
`parec >/tmp/snapfifo` (defaults to 44.1kHz, 16bit, stereo)
### VLC
Use `--aout afile` and `--audiofile-file` to pipe VLC's audio output to the snapfifo:
```sh
vlc --no-video --aout afile --audiofile-file /tmp/snapfifo
```