Kas-code

Results 18 comments of Kas-code

I've received an MMALNoSpaceException before when I've had two processes trying to aceess the camera at the same time. You could try rebooting the Pi, and check that you don't...

I'm using the following method to try to detect the timeout. It runs a Task.Delay as well as cam.ProcessAsync at the same time, and then uses Task.WhenAny to wait for...

I've enabled `MMALCameraConfig.Debug = true` but I'm not seeing any extra output, where does the verbose logging go to? I'm logging memory usage every minute in a python script completely...

It's possible that it's locking while disposing either one of these using statements: ``` using (var imgCaptureHandler = new MemoryStreamCaptureHandler()) using (var renderer = new MMALNullSinkComponent()) ``` I'm going to...

Ok, so the locking up was also happening during disposing one of those two usings in my previous comment. After `cam.ProcessAsync(cam.Camera.StillPort)` hangs, if I then dispose one of those two...

I've found an acceptable workaround that is a good enough solution for me for now. I can detect the first hang and just exit the program. I've configured it as...

@ brminnick Nice! Thanks for your hard work 🙏 it will be great to get this issue and #1603 resolved.

I would really appreciate if this can be merged in guys. This is causing a huge issue in my production app. Is this issue fixed in MAUI? If so, then...

@maonaoda Thanks for the info. I am keen to get this fixed. What is left to do to get this merged in? How can I help?

@maonaoda I implemented a custom renderer which overrides LabelRenderer in my project, and also overrode the function RecalculateSpanPositions in order to use your code change inside my project. It mostly...