Jens Christian Hillerup
Jens Christian Hillerup
OK, I looked at it a bit more, basically trying bullet 2. The issue is that `gcc-multilib` is [not supported on arm64 at all](https://www.reddit.com/r/docker/comments/10uya5l/comment/j7ek918/), so maybe a good-for-now solution would...
That problem might arise from a missing route directive. Try doing this: `sudo route add -net 169.254.0.0 netmask 255.255.0.0 dev wlp3s0 metric 99`, replacing wlp3s0 with the name of your...
Thanks for the review. I'll revise my commits when I get around to it... My first priority was getting the files off of that darn dictaphone and transcoded to something...
Me too.. Looking in `olympusdvr.c` it means the recording type is `ODVR_QUALITY_NEW_HQ` which is just plain unsupported. Supposedly there is a program in `sandec/` that can decode it but it...
All right, the `sandec` utility needs a proprietary DLL to decode the files. I'm hunting for it currently... On issue #6 there was a person writing a decoder implementation written...
Found the DLL and got the code working. Did a pull request.
Thanks for the review... I'll get around to it sometime. @twilly I was wondering if you had that cleanroom implementation of their strange format, so we don't have to resort...
I have a variation of this problem. I'm trying to parse invoice lines from a lot of different subcontractors. Much of it is in some variation of DMY or YMD,...
@bahamas10 This looks like a nice feature. Could we get this merged and released on npm? Would be very nice! Thanks also for creating this very nice utility.
I solved this by monkeypatching PIL... I created `layout_detector_patch.py` with the following contents ``` """Patch for PIL compatibility issues with older detectron2 versions.""" import PIL.Image # Add missing LINEAR attribute...