]> Sergey Matveev's repositories - vors.git/blob - doc/index.texi
29be2ed38fe639e527904c65ccfe4da954577259ee51d1b5c75d715b3c3be292
[vors.git] / doc / index.texi
1 \input texinfo
2 @settitle VoRS
3
4 @copying
5 Copyright @copyright{} 2024 @email{stargrave@@stargrave.org, Sergey Matveev}
6 @end copying
7
8 @node Top
9 @top VoRS
10
11 VoRS -- Vo(IP) Really Simple.
12 Very simple and usable multi-user VoIP solution.
13 Some kind of alternative to @url{https://www.mumble.info/, Mumble}.
14
15 @float
16 @image{screenshots/example,,,Server and two clients,.webp}
17 @caption{Server (above) and two clients (left and right) in a terminal multiplexer}
18 @end float
19
20 But why? SIP-based solutions are pretty complicated to setup, because
21 they are not made for simple tasks like sudden voice chats between a
22 few people. WebRTC-based solutions are insane bloated incredible
23 monsters by complexity and size, hardly possible to debug and having
24 frequent compatibility problems. They work mainly only if you use the
25 same kind of software and codecs, for example Chromium, that requires
26 dozens of gigabytes of disk space and much RAM, CPU time to build it.
27 Is not it pure insanity for such relatively simple task?
28
29 Mumble has wonderful simplicity and workability, but even its server
30 side is still written on Qt, which requires hundreds of megabytes of
31 additional libraries to build it up. And users tend to complain about
32 its newer client versions quality and convenience.
33
34 So let's write as simple VoIP talking client as it is possible, without
35 compromising convenience and simplicity for the user! I just want a
36 simple command, which only requires to specify the server's address to
37 just immediately talk with someone.
38
39 @itemize
40
41 @item No GUI requirement. Why would someone need a GUI for voice
42 application? But a fancy real-time refreshing TUI would be desirable.
43 Mumble tends to output no information, sometimes hiding the fact of a
44 problem and that everything stopped working.
45
46 @item No NAT-traversal possibility. It is the year 2024 year already,
47 stop trying to use and revive legacy obsolete IPv4. Or use some overlay
48 network on top of it, Or VPN, whatever.
49
50 @item Mono-cypher, mono-codec protocol. The @url{https://opus-codec.org/, Opus}
51 audio codec is perfect for VoIP tasks. ChaCha20-Poly1305 is more than
52 appropriate and satisfies as fast and secure encryption solution.
53
54 @end itemize
55
56 @include install.texi
57 @include usage.texi
58 @include vad.texi
59 @include libopus.texi
60 @include proto.texi
61
62 @bye