sskodje / ScreenRecorderLib

A .NET library for screen recording in Windows, using native Microsoft Media Foundation for realtime encoding to h264 video or PNG images.
MIT License
414 stars 94 forks source link

Remove registry check for WindowsMediaVersion #228

Closed hakito closed 1 year ago

hakito commented 1 year ago

Instead move the check for the MF startup result to CheckDependencies. It was used only for logging, but the logging was configured after the constructor call so it never got logged.

The check also probably never applied, because the loading of ScreenRecorderLib already fails if MF.dll is missing.

Fixes #227