jaseg
jaseg
While undocumented, for key types other than SSH-RSA repeating recipients does allow obscuring the total number of recipients in a way that is traceable by the recipients (as opposed to...
I can confirm this. I'm running resvg v0.14.1. Several testcases are attached below. When you flick between these testcases you will also notice that scale seems to be off as...
I agree, this would be useful. The SDK requires python2 and on some distros installing that is a small PITA.
Thank you for the report. No, the property is called "core-idle" in libmpv. libmpv uses dashes for all property names. When observing a property through the observer API the name...
Hmmm... good question. I think the issue is that from MPV's point of view, the `loadfile` command (or our `play` alias) only tells it to start loading a file. It...
Hi there, I'm not sure how the mpv binary's commandline parser for file URLs works, but I think it is possible that it works differently to how `loadfile` handles paths....
Ah, I now understand what you're trying to do! That's an interesting use of python streams. The reason seek does not work in this case is that vspipe simply outputs...
Fun fact: you can even directly feed vapoursynth python code through python-mpv, no need for a second file: ```python3 player = mpv.MPV(vo='x11', log_handler=print, loglevel='debug', loop=True) @player.python_stream('vps-test') def reader(): yield b'''...
The `AttributeError` is because of a tiny mistake in one line of your script. In this line: ```python3 player = mpv.MPV(vo='x11', handler=print, loglevel='debug') ``` `handler` should be `log_handler` like this:...
I have tried it and your code works on my system. Here are the scripts I used to test it. At the end of the post is a screenshot of...