Vincent

Results 11 comments of Vincent

First I want to be very clear that I'm not familiar neither with JS nor with TIFF/GeoTIFF. Please forgive my newbism :-) I tried both your solutions and got the...

Thank you very much for your insight. I'm starting to understand how TIFF works. Here is the result with the following function: ```pixelValuesToColorFn: values => values[0] === -32767.0 ? null...

In case anyone is wandering here :-) I manually scale colors: ``` pixelValuesToColorFn: values => values[0] === -99 ? null : (values[0] > 0 && values[0] 1 && values[0] 2...

Same goes in my logs: ``` 2019-10-27 07:54:45.754 INFO --- o.a.p.io.PlayQueueInputStream : 192.168.16.2: http://mydomain.com listening to sometrack.flac 2019-10-27 07:54:45.757 INFO --- o.a.p.io.TranscodeInputStream : Starting transcoder: [/config/transcode/ffmpeg] [-i] [/music/sometrack.flac] [-map] [0:0]...

> Anecdata, FWIW: For the reverse proxy in front of Airsonic, I switched from [nginx-proxy](https://hub.docker.com/r/jwilder/nginx-proxy) (with [proxy_max_temp_file_size](https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_max_temp_file_size) set to 0) to [Traefik](https://traefik.io/) v2, and this problem went away entirely. I...

F it, I disabled transcoding in the web player. No solution, no problem :-)

That pull request worked a charm for me: https://github.com/TheKikGen/USBMidiKliK/pull/7

I believe I did not reboot the Arduino after grounding the pin and that is why it didn't work. I'll come back and close the issue in a few days...

I've encountered the same error message for FLAC or mp3 files. I tried removing APE tags using apetag: ```apetag -i "file.mp3" -m overwrite``` But apetag did not find any APE...