Results 44 comments of Alex Shpilkin

Generally speaking, yes, that’s the plan; but I’m afraid that’s going to be a bit of a project in itself. I’ve already put most of IO code into a [separate...

By the way, I probably can’t help you with FFmpeg, but I do have [a script][1] that displays live video using GStreamer. (It does DVRIP processing in a separate daemon...

The `dvr-*` commands never did work standalone. I admit that my attempt to factor out some of the boilerplate into the `dvr` launcher came out a bit silly, but... it...

Thanks for your interest in the project and sorry for the late reply. Do you mean the command-line tools or the library code? For the command-line tools, try dvr -h...

> Btw, why do you pass "HOST" parameter to the help (-h) option? ;-) (Example of "Help Plz" support questions which will never subside.) Because I didn’t think about it,...

Hello and thanks for your interest in the project. I agree that support for device configuration is both important and desirable. It’s more or less the only substantial thing currently...

An additional data point is that SDL’s [`SDL_GL_GetProcAddress`][1] is also not `__stdcall` by default: in theory it is [`SDLCALL`][2], but that means the default C convention everywhere except (for some...

Here’s one more example where one might want this (adapted from my recent code): ```python async def collect(*awaitables): # essentially the same thing as asyncio.as_completed() results = Queue(0) async def...

For the purposes of this comment, a “thread” will mean anything with a separate (Python) instruction pointer (whether or not it has a stack, is associated with a trio task...

If I understand contexts, context vars and PEP 568 correctly (... :-/ ), a correct dynamic variable (suitable for _e.g._ a cancel token), given PEP 568, is simply something like...