Implemented v1

This commit is contained in:
2026-06-03 13:26:46 +01:00
parent dcf7a59ea9
commit a95c6e7183
3 changed files with 98 additions and 0 deletions

View File

@ -1,2 +1,10 @@
# Simple OSC Router
A simple router for allowing multiple applications to talk to VRChat simultaneously.
## How do I use it?
By default, this software broadcasts anthing from ports 9100 to 9199 (depending on the `--count` / `-c` option) to port 9000 (VRChat's OSC server).
And broadcasts anything from port 9001 (VRChat's OSC client) to ports 9200 to 9299 (still depending on `-c`).
The only command line argument is `--count` / `-c`, which specifies how many routes will be created. This defaults to `5`.
For most cases you can simply run `main.py`, if you want more configuration (such as changing port numbers, binds etc.) see `python3 main.py --help` or `py main.py --help` on Windows.