Pedro Côrte-Real
Pedro Côrte-Real
I was looking through the spec and noticed a comment about it only working on unicorn. This indeed works properly on unicorn. Unfortunately I can hang unicorn very easily running...
Created a test case for this here: https://github.com/pedrocr/camerasink/blob/b01aac64e8aaef96f8527f6e29768cc1f5f6199b/testcases/puma_double_chunking.ru It's runnable as "rackup puma_double_chunking.ru" and then: The original server first (a basic webrick server): ``` sh $ curl http://localhost:9000 Hello! ```...
Thanks for looking into it @evanphx. Unfortunately I really do need the proxying to work. The chunking is already done from the source I just need to pass it through....
@sonots, I was just using HTTP/1.0 requests to make it easier to write it out on the terminal (saves the host line). The clients will be doing HTTP/1.1. Strangely libsoup...
> you need color data extraction from files which provides color data Isn't that already done? At least darktable doesn't seem to use libraw to get that.
That's one source, originally from dcraw now generated from the Adobe DNG converter directly. It also has custom colors for some cameras. Do you mean that besides fixed values for...
https://github.com/darktable-org/darktable/blob/master/tools/dngmeta.sh I'm afraid that probably doesn't do what you want. It extracts the values from a .DNG file but you'd probably want to extract them from the app data itself.
After looking at this in more detail my plan would be to extend rawspeed to extract both whitebalance and color data but not thumbnails. For thumbnails something like exiv2 should...
If you're looking into the DNG/LJPeg decoder you may want to have a look at two other cases currently not supported: - Some of the Leaf cameras use a lossless...
Yes, all of CRW is little endian only. My plan was to change both the CIFF and TIFF parsers to use things like the get4LE macros so that they are...