Dual PC Setup - kokolihapihvi/RockSniffer GitHub Wiki
For this to work, make sure that your streaming PC and Rocksmith PC are on the same local network.
With text files
Make the output
directory shared over the local network, then continue with normal setup
With addons (Since v0.1.1)
On the PC running Rocksmith 2014
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
}
On the streaming PC
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