]> Sergey Matveev's repositories - vors.git/blob - doc/vad.texi
Forgotten version raise
[vors.git] / doc / vad.texi
1 @node VAD
2 @unnumbered VAD
3
4 Voice Activity Detection is off by default. You can use the
5 @command{vors-vad [-rec ...] THRES} command with feeding audio record in
6 its stdin. It will print calculated sound RMS value if it exceeds the
7 @option{THRES} threshold. So you can manually try various @option{THRES}
8 values to see when it is comfortable to detect your voice. Pass the
9 desired @option{THRES} value to @option{-vad} option of @command{vors-client}.
10
11 @example
12 $ vors-vad 100
13 [talk and see if threshold is low/high enough]
14 [it is too sensible, let's try higher one]
15
16 $ vors-vad 200
17 [perfect!]
18
19 $ vors-client -vad 200 [...]
20 @end example