]> Sergey Matveev's repositories - vors.git/blob - doc/install.texi
Noising
[vors.git] / doc / install.texi
1 @node Install
2 @unnumbered Install
3
4 VoRS is written on @url{https://go.dev/, Go}, but depends on
5 @url{https://github.com/hraban/opus, gopkg.in/hraban/opus.v2}
6 library, that links it with C-written
7 @url{https://opus-codec.org/, libopus} library.
8 So you will need its development headers.
9
10 @example
11 $ git clone git://git.stargrave.org/vors.git
12 $ cd vors
13 $ ./mk-bin
14 $ cp bin/vors-* $PATH/bin
15 @end example
16
17 Audio recording and playback is done through external utilities, capable
18 of reading/writing raw audio samples from stdin/stdout.
19 @url{https://sourceforge.net/projects/sox/, SoX}'es @command{rec} and
20 @command{play} are used by default. You can use anything you want by
21 overriding them with @option{-rec} and @option{-play} options to
22 @command{vors-client}.