-
-
Notifications
You must be signed in to change notification settings - Fork 110
SysDVR Client setup
exelix edited this page Jan 16, 2023
·
23 revisions
SysDVR-Client is a PC application that acts as a bridge between SysDVR and your video player, it's needed to improve performances by using some custom-built streaming protocols.
If you encounter any issue check the troubleshooting page
Go to the Releases tab, download and extract the SysDVR-Client.7z file, among the various files it contains two executables:
-
SysDVR-Client.exethat's the actual client. It's a command line application so may be a little hard to use for some users. -
SysDVR-ClientGUI.exethis is a graphical launcher for SysDVR-Client, this is Windows-only and it's meant to make things easier for less experienced users.
- Download and install latest .NET. Make sure to get the x64 version.
- You must install .NET 6 or newer, older versions like framework or 5 won't work.
- This is not always needed but you may need to install latest MSVC libs from Microsoft
- You should be ready, launch SysDVR-Client.exe from the terminal or double click SysDVR-ClientGUI.
- SysDVR-ClientGUI is a user-friendly GUI for SysDVR-Client that will automatically configure streaming modes and create shortcuts for them.
The install commands are for the default Ubuntu package manager, if you use a different distro you'll have to find equivalent commands on your own.
- Download and install .NET.
- You need .NET 6 or newer, mono and .NET core will not work
- Microsoft provides packages for the most common package managers and distros
- Install ffmpeg
sudo apt install ffmpeg - Install SDL2
sudo apt install libsdl2-dev - You should be ready, check if it works by running
dotnet SysDVR-Client.dll --help
The install commands use brew, if you use a different package manager you'll have to find equivalent commands on your own.
- Download and install .NET.
- You need .NET 6 or newer, mono and .NET core will not work
- You must install the native .NET version for your device: if you have an apple silicon mac download the arm64 version, if you have an intel mac download the x64 version. Running SysDVR with rosetta will not work
- Install ffmpeg
brew install ffmpeg - Install SDL2
brew install SDL2 - Install libusb
brew install libusb - You should be ready, check if it works by running
dotnet SysDVR-Client.dll --help