Results 110 comments of jaseg

> What did I do wrong? The code you posted is fine! I added the missing parts and got the script below. The output is as expected. I'm guessing you...

No, I tried reproducing it using your code but with the script I put it into everything worked. It must have been something outside of the code you posted above.

That should definitely not cause this kind of behavior.

@smallnetbuilder I probably was not seeing the issue since I did not get any ffmpeg errors. mpv's regular output gets redirected as intended, after all. You might be interested in...

Try initializing MPV like this to get debug output: ```MPV(..., log_handler=print, loglevel='debug')``` I can imagine the LED matrix lib maybe taking up some GPU resources preventing libmpv from accessing the...

There were some issues around multithreading and `terminate()`. I re-structured the code somewhat and now things should generally work much more reliably than before. I tried your first example and...

@m44soroush I'm glad that your workaround functions, but it would be interesting to see why this happened. Do you think you could get a stack trace of the hanging code?...

There is progress on this. The current master has an extended blacklist there and should pass w/o segfaults again. I will put out a release some time in the next...

I don't know Qt that well myself, but I guess the problem is that Qt catches all input events and they never get forwarded to mpv. My first idea on...