Rembrand van Lakwijk

Results 9 comments of Rembrand van Lakwijk

If you don't specify any specific items to download (so *no* `-a`, `-s` or `-f`), it downloads everything including all photos on your timeline, which you can find under the...

This is not a bug. Python itself is built using VS 2008 (=3.3), and any libraries for it should be built using the same compiler.

@CJNE I have a Zappi 2.1 and encountering this issue, I'd be happy to test if you push your dev branch

I tried in the latest master commit 9e578d1c8fa7adf61899ba64a9f26a0032c29c0e and it seems the scaling logic has completely changed (`scale_cuda` is no longer used, in stead it tries `scale_npp`), but it is...

A workaround that works for me for now is to disable hardware processing of the image pipeline altogether: ```patch diff --git a/src/projects/transcoder/transcoder_encoder.cpp b/src/projects/transcoder/transcoder_encoder.cpp index 650a29cf..dd67a51d 100644 --- a/src/projects/transcoder/transcoder_encoder.cpp +++ b/src/projects/transcoder/transcoder_encoder.cpp...

For anyone looking for a workaround, add this before calling `render_pillow()`: ``` import PIL.ImageDraw def textsize(self: PIL.ImageDraw.ImageDraw, *args, **kwargs): x, y, w, h = self.textbbox((0, 0), *args, **kwargs) return w,...

The dependency on ffmpeg 5.0.1 is currently also preventing OvenMediaEngine from building on Ubuntu 24.04 LTS because it does not build with binutils >= 2.41. Would love this patch to...

It's not just a rumour, it's in the datasheet: ![Screenshot_20240728-112837](https://github.com/user-attachments/assets/59285dc2-f248-4be4-a89b-5ee3b9939689)

Not sure what your exact use case is, but it works well for me to just wrap `tqdm` in `itertools.batched` like this: ``` for batch in itertools.batched(tqdm(my_list_of_items), batch_size): do_whatever_with(batch) ```...