Thomas May

Results 10 comments of Thomas May

Here's what I've tried so far (to no success :( ) - I've tried forcing ffms2 - I've tried using ffmpeg to turn the file from it's original form to...

I fixed it! It'd be nice if this were an option in av1an. Step one, I wrote my own vpy script (because I also needed to do deinterlacing). It looks...

Minimum reproduction test.vpy ``` from vapoursynth import core core.std.BlankClip(format=vs.YUV420P10).set_output() ``` Minimal command to reproduce `docker run -v ${PWD}:/videos -it --rm masterofzen/av1an:latest --split_method aom_keyframes -i test.vpy`

It really doesn't help when you are dealing with 100s of threads named different things and you want to just deal with one subset. (in this case, tomcat threads which...

FYI, lightweight threads and co-routines aren't really any benefit if the type of work is CPU bound (what I suspect of most jqwik work). For CPU bound work, the best...

With the release of 4.x, where does this issue stand?

Can confirm, I have the same issue with kodi 20.2 on debian with dav1d 1.2. This appears to be fixed in ffmpeg 5.1+ with this commit https://github.com/FFmpeg/FFmpeg/commit/3e186148ca9ac0c47cec253fdea62b48c9feadd2

@Glusk different problems. Hikari doesn't manage a thread pool (sort of... not around connections at least). Instead, Hikari is managing network connections or JDBC connections to the database. You'll still...

@Glusk Pretty much, but also remember that TCP/IP connections also aren't cheap. Absolutely DB connections are more expensive because they usually have some handshake aspect and auth can be somewhat...

Yup, that's all correct. Socket churn can be a bigger issue, however, than the raw number of opened sockets. This problem has actually struck my company a couple of times....