Results 110 comments of jaseg

No, seriously, if you manage to make it work, tell me how you did it, because I only have that one VM where I know it works built over several...

I guess it's fine if you think these attacks don't hurt this system. I even think this system is a really interesting case study despite any attacks on the underlying...

@kanehekili I think you just called `MPV.play` too early, before the `MPVRenderContext` was registered, which caused libmpv to fall back to the standard opengl vo. I've modified the code from...

I got it to work without issues on both an older Dell monitor and on one of these fake USB 3.0 HDMI/USB UVC converters. Mine self-identifies as some unspecified "macrosilicon"...

I think storing a backup of the challenge in /boot during enrollment would be a reasonable action on the ykfde side. You can look at the output of mount(8) to...

Check out [python-mpv issue #124](https://github.com/jaseg/python-mpv/issues/124). The lua script there is a workaround until this gets solved in mpv.

I just tested this, and I can confirm that at least setting the option works as advertised. ```python3 #!/usr/bin/env python3 import mpv player = mpv.MPV() print(player.gapless_audio) player = mpv.MPV(gapless_audio=True) print(player.gapless_audio)...

@pauljeffrussell Did you figure out what went wrong? Since I couldn't reproduce your issue at all, I'm closing it for now. Please feel free to re-open it, or to open...

Thank you for the report! I'm able to reproduce this. The issue happens when for whatever reason one of the two mpv instance that are racing in this test takes...

I'm a bit unclear what you mean exactly. When you register a key binding, python-mpv tells libmpv to emit events for that key by setting up a scripted key binding...