-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started
Lucky8boy edited this page Aug 24, 2025
·
3 revisions
Follow these steps to set up and run SubSpectra on your Windows machine.
- Windows 10 or 11
- .NET Framework 4.8 or newer
- Visual Studio 2022 or newer (recommended)
-
FFmpeg — Used for video processing
- Place
ffmpeg.exein a known folder or include it in yourPATH. - If it is in a different path, other than the default one, change
ffmpeg_pathvariable (line 34).
- Place
-
LibVLCSharp — Used for video playback
- Install
LibVLCSharp.WinFormsvia NuGet - Copy
libvlcbinaries (e.g.,libvlc.dll) to your build output directory
- Install
-
ClosedXML — For generating Excel reports
-
MathNet.Numerics — For chi-square, RS calculations
- Open the
SubSpectra.slnfile in Visual Studio. - Go to Tools > NuGet Package Manager > Manage NuGet Packages for Solution...
- Install / Restore all required NuGet packages:
LibVLCSharp.WinFormsClosedXMLMathNet.Numerics
- Make sure
ffmpeg_pathpoints to your localffmpeg.exe - Build the solution (
Ctrl+Shift+B) - Run the project (
F5)