Syncplay is a tool that allows you to synchronize media playback across the network on multiple instances of media players. This is useful for remote group watching movies or TV shows among family and friends.
This is especially useful in the current Covid 19 pandemic where friends and family cannot meet together to watch movies.
While the public Syncplay servers are available for public use, I prefer self-hosting my services wherever I can. Syncplay allows you to self-host on your server, allowing friends and family to connect to it instead.
Prerequisites
- Any GNU/Linux based server. (We are using Ubuntu Server 20.04.1 LTS)
- Git
- Python 3.4.x and above, python3-twisted package
Setting up the server
Before we begin run the apt
command and update the system to the latest packages available upstream. As a root
user run.
|
|
Next, we will be creating a disabled
user account called syncplay
in our server. This user account will be responsible for starting and stopping the syncplay service as well as storing the syncplay repository.
|
|
You will be asked information about the user. Just press ENTER for all the questions asked.
Using the su
command switch to the newly created user syncplay
and enter it’s home directory.
|
|
Run the following command to pull the latest repository from upstream.
|
|
We will now reset the HEAD to the latest stable commit in our master
branch. Go here and find the commit hash for the latest stable release. In our case it was v1.6.6 with hash 7b8cb3b
.
|
|
Alternatively you can download the latest stable source tarball from release and extract it.
|
|
Now we install python3-twisted
package. You can use the apt
command to install the latest twisted
package. I recommend using the native package manager for installing python packages. As root use the apt install
command to install.
|
|
Starting the server.
Navigate into the syncplay
directory you created above and run syncplayServer.py
.
|
|
You should be getting a greeting from Syncplay followed by a notice regarding salt.
|
|
Copy the string after --salt
and save it. We will be using it later when creating the systemctl service
files.
Kill the server by pressing Ctrl + C
.
Setting up systemctl service files.
As a root user type nano /lib/systemd/system/syncplay.service
or any editor you would like to use.
|
|
and paste the following lines of code.
|
|
Please paste your salt replacing <YOUR SALT>
with the salt you previously copied. By default we are using port 8999
. Users can change this value to any other port they would like to use.
You can also set a server password for your syncplay
server. Add your desired password after --password
. For example if you want to set the password as testing123
edit the ExecStart
line as ExecStart=/home/syncplay/syncplay/syncplayServer.py --salt <YOUR SALT> --port 8999 --password testing123
.
More information regarding the switches and available options can be found here
Press Ctrl + X
and then Y
to save the file.
Now type
|
|
This will start the syncplay
server and also enable it to start on boot.
You can now exit the server and connect to your newly setup syncplay
server.
Now open Syncplay Client on your system and use the following settings to connect.
- Server address: Your Server Public IP.
- Server Password (if any): Type your password. Leave it blank if you have not specified in the previous step.
- Username (optional): Your username which you would like to use.
- Default room: Type any room you would like to use.

Press Store configuration and run Syncplay. You should be now connected to your Syncplay server.
If your server is behind a router or firewall make sure to setup the Port Forwarding rules to allow access from the internet.
Have fun watching together!