SeeShark
SeeShark copied to clipboard
Simple C# camera library.
sorry me again.... 😅 is it possible to specify the decoder type (built in / custom) for the `VideoDevice` class please? the current built-in one is a soft decoder and...
something like ``` public interface ILogSink { bool IsEnabled(LogEventLevel level, string type); void Log(LogEventLevel level, string type, object? source, string messageTemplate); void Log( LogEventLevel level, string type, object? source, string...
On `x11grab` the `window_id` input option is available, while on `gdigrab` the window title can be provided, but i need to look further into using a HWND instead of a...
For SeeShark 5, I chose to completely rewrite the entire thing. Having to deal with FFmpeg setup is becoming tiring. Some missing features meant that I had to write interop...
Hi, Getting a `System.DivideByZeroException` at ``` at SeeShark.Device.VideoDevice.TryGetFrame(Frame& frame) at SeeShark.Device.VideoDevice.DecodeLoop() ``` which most likely is when the device returns a framerate of 0 (?). See https://github.com/Speykious/SeeShark/blob/cc4aa3b69053f08c92b77528ab95d326c91d7f72/SeeShark/Device/VideoDevice.cs#L88C12-L88C86. ```cs Thread.Sleep(1000 *...