-
Notifications
You must be signed in to change notification settings - Fork 29
Dual PC Setup
kokolihapihvi edited this page Feb 8, 2018
·
4 revisions
For this to work, make sure that your streaming PC and Rocksmith PC are on the same local network.
Make the output
directory shared over the local network, then continue with normal setup
Configure the addon service to listen on your local IP address.
In this example we will assume that your local IP address is 192.168.0.100
Edit addons.json
inside the config
directory, and input your local IP address
{
"_NOTE": "Enabling addons will enable a local web server",
"enableAddons": true,
"ipAddress": "192.168.0.100",
"port": 9938
}
You will need to transfer the addons
folder in its entirety to the streaming PC
Configure the addon you are using to connect to that local IP address
At the top of script.js
inside the addon folder, there are some configuration variables, including the IP address and port to connect to.
Fill in your local IP address
//Addon service ip and port
var ip = "192.168.0.100";
var port = 9938;
Then continue with normal setup