JacobDev1

Results 8 comments of JacobDev1
trafficstars

@tocotronaut Hello, in general, make a new issue for new proposals. Encoding twice this way isn't practical because of the large discrepancy in efficiency. Lossless JPEG Transcoding yields 16% -...

Try using either `Encoder - Preserve` or `Encoder - Wipe` option in the Modify tab -> Metadata.

I was able to reproduce this issue. This looks like a bug in `cjxl` from `libjxl` or `libjxl` itself. You can reproduce this by using `cjxl` from the [JPEG XL...

This is a very rare edge case. If you stumble upon this problem, remove the ICC profile from the source files with ExifTool (as you suggested). XL Converter allows you...

Thanks for the suggestion. Having it work with PNG/JPEG input would be ideal. I wrote a `cjxl` front-end and my users could really use this feature. I'm sure regular `cjxl`...

Could any of the developers please confirm if `--streaming_input` is safe to use (on non-PPM inputs)? The `--streaming_input` option began to accept PNG as input in libjxl 0.11. An error...

After reviewing the source code, the `--streaming_input` argument is most likely unintentionally triggering `JXL_ENC_FRAME_SETTING_BUFFERING` being appended to the `params.options` vector. ```c if (args.streaming_input) { params.options.emplace_back(JXL_ENC_FRAME_SETTING_BUFFERING, static_cast(3), 0); } ```

After doing more research, it turns out `--streaming_input` is a disappointing solution for high RAM usage. Enabling chunked encoding makes effort 9 almost identical to effort 7, with a similar...